~kubuntu-members/sweeper/4.11

« back to all changes in this revision

Viewing changes to privacyfunctions.cpp

  • Committer: Burkhard Lück
  • Date: 2011-06-08 21:29:47 UTC
  • Revision ID: git-v1:0f3aaa86c630587d5c6df824944097f013b2b3e7
Fix dbus call to clear Run Command History
BUG:202811
REVIEW:6707

svn path=/trunk/KDE/kdeutils/sweeper/; revision=1235741

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
 
76
76
bool ClearRunCommandHistoryAction::action()
77
77
{
78
 
   QDBusInterface krunner(QLatin1String( "org.kde.krunner" ), QLatin1String( "/Interface" ), QLatin1String( "org.kde.krunner.Interface" ));
 
78
   QDBusInterface krunner(QLatin1String( "org.kde.krunner" ), QLatin1String( "/App" ), QLatin1String( "org.kde.krunner.App" ));
79
79
   QDBusReply<void> reply = krunner.call(QLatin1String( "clearHistory" ));
80
80
   return reply.isValid();
81
81
}