~brandontschaefer/unity/show-desktop-fix

« back to all changes in this revision

Viewing changes to unity-shared/PluginAdapter.cpp

  • Committer: Brandon Schaefer
  • Date: 2013-07-10 16:55:17 UTC
  • Revision ID: brandon.schaefer@canonical.com-20130710165517-l9ktd4du0qljso0m
* Remove extra noise in the AP tests...

Show diffs side-by-side

added added

removed removed

Lines of Context:
936
936
 
937
937
void PluginAdapter::OnShowDesktop()
938
938
{
939
 
  LOG_DEBUG(logger) << "Now in show desktop mode.";
940
939
  _in_show_desktop = true;
941
940
}
942
941
 
943
942
void PluginAdapter::OnLeaveDesktop()
944
943
{
945
 
  LOG_DEBUG(logger) << "No longer in show desktop mode.";
946
944
  _in_show_desktop = false;
947
945
}
948
946