summaryrefslogtreecommitdiffstats
path: root/kxsldbg
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-06 19:49:06 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-06 19:49:06 -0600
commit051ae88012e0fd0ed56b862da0efa957f1a72957 (patch)
tree3e31b3a2a944413a9a44f97d930dfcab81db92b5 /kxsldbg
parent1c53bf78a70a66d8ec15a77cbf98606694d7e6e7 (diff)
downloadtdewebdev-051ae88012e0fd0ed56b862da0efa957f1a72957.tar.gz
tdewebdev-051ae88012e0fd0ed56b862da0efa957f1a72957.zip
Rename KCmd to avoid conflicts with KDE4
Diffstat (limited to 'kxsldbg')
-rw-r--r--kxsldbg/main.cpp4
-rw-r--r--kxsldbg/xsldbgmain.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/kxsldbg/main.cpp b/kxsldbg/main.cpp
index 29b286c7..0875794a 100644
--- a/kxsldbg/main.cpp
+++ b/kxsldbg/main.cpp
@@ -9,12 +9,12 @@ static const char *description =
I18N_NOOP("A TDE KPart Application for xsldbg, an XSLT debugger");
static const char *version = VERSION;
-static const KCmdLineOptions options[] =
+static const TDECmdLineOptions options[] =
{
{ "+XSLSource", I18N_NOOP("XSL script to run"), 0},
{ "+XMLData", I18N_NOOP("XML data to be transformed"), 0},
{ "+OutputFile", I18N_NOOP("File to save results to"), 0},
- KCmdLineLastOption // End of options.
+ TDECmdLineLastOption // End of options.
};
int main(int argc, char **argv)
diff --git a/kxsldbg/xsldbgmain.cpp b/kxsldbg/xsldbgmain.cpp
index f1b678a3..cdf299ef 100644
--- a/kxsldbg/xsldbgmain.cpp
+++ b/kxsldbg/xsldbgmain.cpp
@@ -52,7 +52,7 @@ static const char *description = I18N_NOOP("A TDE console application for xsldbg
static const char *version = VERSION;
-static const KCmdLineOptions options[] =
+static const TDECmdLineOptions options[] =
{
{ "shell", I18N_NOOP("Start a shell"), 0},
{ "cd <path>", I18N_NOOP("Path to change into before loading files"), 0},
@@ -96,7 +96,7 @@ static const KCmdLineOptions options[] =
{ "noautorestart", I18N_NOOP("Disable the automatic restarting of execution when current processing pass is complete"), 0},
{ "+XSLSource", I18N_NOOP("XSL script to run"), 0},
{ "+XMLData", I18N_NOOP("XML data to be transformed"), 0},
- KCmdLineLastOption // End of options.
+ TDECmdLineLastOption // End of options.
};
class XsldbgApp : public TDEApplication