From kde-commits Sat Feb 05 00:15:40 2005 From: Esben Mose Hansen Date: Sat, 05 Feb 2005 00:15:40 +0000 To: kde-commits Subject: kdebase/klipper Message-Id: <20050205001540.6DFC21D21A () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=110756254712037 CVS commit by esben: The extra guard is no longer neccessary, apparantly. M +1 -0 configdialog.cpp 1.72 M +1 -1 main.cpp 1.42 M +2 -0 urlgrabber.cpp 1.46 --- kdebase/klipper/configdialog.cpp #1.71:1.72 @@ -34,4 +34,5 @@ #include +#include #include "configdialog.h" --- kdebase/klipper/main.cpp #1.41:1.42 @@ -31,5 +31,5 @@ #include "version.h" -#if defined Q_WS_X11 && ! defined K_WS_QTONLY +#if defined Q_WS_X11 #include // schroder #endif --- kdebase/klipper/urlgrabber.cpp #1.45:1.46 @@ -439,4 +439,5 @@ ClipAction::ClipAction( KConfig *kc ) kc->setGroup( group.arg( i ) ); + kdDebug() << "kc->isDollarExpansion=" << kc->readEntry( "Commandline" ) << endl; addCommand( kc->readPathEntry( "Commandline" ), kc->readEntry( "Description" ), // i18n'ed @@ -457,4 +458,5 @@ void ClipAction::addCommand( const QStri if ( command.isEmpty() ) return; + kdDebug() << "command->command=" << command << endl; struct ClipCommand *cmd = new ClipCommand( command, description, enabled, icon );