~aacid/unity/do_not_reuse_menus_on_order_change

« back to all changes in this revision

Viewing changes to UnityCore/DBusIndicators.cpp

  • Committer: Albert Astals
  • Date: 2012-10-08 10:03:05 UTC
  • Revision ID: albert.astals@canonical.com-20121008100305-kcyj1dl1qisdx43b
closer to the original

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
{
38
38
nux::logging::Logger logger("unity.indicator.DBusIndicators");
39
39
 
 
40
const std::string SERVICE_NAME("com.canonical.Unity.Panel.Service");
40
41
const std::string SERVICE_PATH("/com/canonical/Unity/Panel/Service");
41
42
const std::string SERVICE_IFACE("com.canonical.Unity.Panel.Service");
42
43
} // anonymous namespace
406
407
}
407
408
 
408
409
DBusIndicators::DBusIndicators()
409
 
  : pimpl(new Impl("com.canonical.Unity.Panel.Service", this))
 
410
  : pimpl(new Impl(SERVICE_NAME, this))
410
411
{}
411
412
 
412
413
DBusIndicators::DBusIndicators(const std::string &dbus_name)