From kde-commits Sat Feb 05 15:09:03 2005 From: Esben Mose Hansen Date: Sat, 05 Feb 2005 15:09:03 +0000 To: kde-commits Subject: kdebase/klipper Message-Id: <20050205150903.84EA81BA30 () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=110761627732318 CVS commit by esben: Fix bug in dollar-escaping M +2 -1 urlgrabber.cpp 1.50 --- kdebase/klipper/urlgrabber.cpp #1.49:1.50 @@ -484,5 +484,6 @@ void ClipAction::save( KConfig *kc ) con kc->setGroup( group.arg( i ) ); - kc->writePathEntry( "Commandline", cmd->command.replace( "$","$$" )); + QString command( cmd->command ); + kc->writePathEntry( "Commandline", command.replace( "$","$$" )); kc->writeEntry( "Description", cmd->description ); kc->writeEntry( "Enabled", cmd->isEnabled );