diff options
| author | Andrea Azzarone <azzaronea@gmail.com> | 2012-09-18 14:13:04 -0400 | 
|---|---|---|
| committer | Tarmac <> | 2012-09-18 14:13:04 -0400 | 
| commit | d983ea9359e562b6f4008d58ead35264bd0756c2 (patch) | |
| tree | 5d91cd37306356bdd22ead6e5fca2cfe8938cf89 /unity-standalone | |
| parent | d0d33d4fab6e14a75748658c156ca2c06719ff21 (diff) | |
| parent | 746b89184632ec1aac9311040949a074180c43bd (diff) | |
Refactor unity::Settings to use nux::RWProperty.. Fixes: https://bugs.launchpad.net/bugs/1044681. Approved by Omer Akram.
(bzr r2712)
Diffstat (limited to 'unity-standalone')
| -rw-r--r-- | unity-standalone/StandaloneUnity.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/unity-standalone/StandaloneUnity.cpp b/unity-standalone/StandaloneUnity.cpp index a5dba677c..fc5421fce 100644 --- a/unity-standalone/StandaloneUnity.cpp +++ b/unity-standalone/StandaloneUnity.cpp @@ -160,7 +160,7 @@ int main(int argc, char **argv)  // The instances for the pseudo-singletons.  Settings settings;  settings.is_standalone = true; - if (force_tv) Settings::Instance().SetFormFactor(FormFactor::TV); + if (force_tv) Settings::Instance().form_factor(FormFactor::TV);  PluginAdapter::Initialize(NULL);  dash::Style dash_style; | 
