summaryrefslogtreecommitdiffstats
path: root/kmrml/kmrml/lib/kmrml_config.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmrml/kmrml/lib/kmrml_config.cpp')
-rw-r--r--kmrml/kmrml/lib/kmrml_config.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kmrml/kmrml/lib/kmrml_config.cpp b/kmrml/kmrml/lib/kmrml_config.cpp
index 023a93d9..28c37eae 100644
--- a/kmrml/kmrml/lib/kmrml_config.cpp
+++ b/kmrml/kmrml/lib/kmrml_config.cpp
@@ -30,9 +30,9 @@
#include <kdeversion.h>
#if KDE_VERSION < 307
- #define TQUOTE( x ) x
+ #define QUOTE( x ) x
#else
- #define TQUOTE( x ) KProcess::quote( x )
+ #define QUOTE( x ) KProcess::quote( x )
#endif
using namespace KMrml;
@@ -183,7 +183,7 @@ TQString Config::addCollectionCommandLine() const
DEFAULT_ADDCOLLECTION_CMD );
int index = cmd.find( "%h" );
if ( index != -1 )
- cmd.replace( index, 2, TQUOTE( mrmldDataDir() ) );
+ cmd.replace( index, 2, QUOTE( mrmldDataDir() ) );
index = cmd.find( "%e" );
if ( index != -1 )
@@ -205,7 +205,7 @@ TQString Config::removeCollectionCommandLine() const
DEFAULT_REMOVECOLLECTION_CMD );
int index = cmd.find( "%h" );
if ( index != -1 )
- cmd.replace( index, 2, TQUOTE( mrmldDataDir() ) );
+ cmd.replace( index, 2, QUOTE( mrmldDataDir() ) );
index = cmd.find( "%e" );
if ( index != -1 )
@@ -241,7 +241,7 @@ TQString Config::mrmldCommandline() const
index = cmd.find( "%d" );
if ( index != -1 )
{
- cmd.replace( index, 2, TQUOTE( mrmldDataDir() ) );
+ cmd.replace( index, 2, QUOTE( mrmldDataDir() ) );
}
qDebug("***** commandline: %s", cmd.latin1());