summaryrefslogtreecommitdiffhomepage
path: root/ios/MullvadVPN/BasicTableViewCell.swift
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2019-05-21 18:52:27 +0200
committerAndrej Mihajlov <and@mullvad.net>2019-05-22 11:35:38 +0200
commit860dbebbfe49226508765dc04072104971fa41a2 (patch)
tree1ef5f11a26ebf299f67caf2c44299add55850f81 /ios/MullvadVPN/BasicTableViewCell.swift
parente4c07244f9064630133412050482308a2a34c502 (diff)
downloadmullvadvpn-860dbebbfe49226508765dc04072104971fa41a2.tar.xz
mullvadvpn-860dbebbfe49226508765dc04072104971fa41a2.zip
Scope colors into UIColor sub-structs
Diffstat (limited to 'ios/MullvadVPN/BasicTableViewCell.swift')
-rw-r--r--ios/MullvadVPN/BasicTableViewCell.swift4
1 files changed, 2 insertions, 2 deletions
diff --git a/ios/MullvadVPN/BasicTableViewCell.swift b/ios/MullvadVPN/BasicTableViewCell.swift
index 288b59c4b5..88a573bb1a 100644
--- a/ios/MullvadVPN/BasicTableViewCell.swift
+++ b/ios/MullvadVPN/BasicTableViewCell.swift
@@ -14,10 +14,10 @@ class BasicTableViewCell: UITableViewCell {
super.awakeFromNib()
let backgroundView = UIView()
- backgroundView.backgroundColor = UIColor.cellBackgroundColor
+ backgroundView.backgroundColor = UIColor.Cell.backgroundColor
let selectedBackgroundView = UIView()
- selectedBackgroundView.backgroundColor = UIColor.cellSelectedBackgroundColor
+ selectedBackgroundView.backgroundColor = UIColor.Cell.selectedBackgroundColor
self.backgroundView = backgroundView
self.selectedBackgroundView = selectedBackgroundView