summaryrefslogtreecommitdiffstats
path: root/src/commandline.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:33 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:33 -0600
commit201e831d6d5b086b43d9f9dba0a0ae8c74e4f2a3 (patch)
tree83466931bbe6cb61325959b035c45c4c15e3e463 /src/commandline.h
parent7f5f522e98edd9b4c0f38b516898e9de82814e8a (diff)
downloadtdesvn-201e831d6d5b086b43d9f9dba0a0ae8c74e4f2a3.tar.gz
tdesvn-201e831d6d5b086b43d9f9dba0a0ae8c74e4f2a3.zip
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'src/commandline.h')
-rw-r--r--src/commandline.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/commandline.h b/src/commandline.h
index 5edec07..ce01437 100644
--- a/src/commandline.h
+++ b/src/commandline.h
@@ -20,7 +20,7 @@
#ifndef COMMANDLINE_H
#define COMMANDLINE_H
-class KCmdLineArgs;
+class TDECmdLineArgs;
class CommandLineData;
/**
@@ -28,13 +28,13 @@ class CommandLineData;
*/
class CommandLine{
public:
- CommandLine(KCmdLineArgs*);
+ CommandLine(TDECmdLineArgs*);
virtual ~CommandLine();
virtual int exec();
protected:
- KCmdLineArgs*m_args;
+ TDECmdLineArgs*m_args;
CommandLineData*m_data;
};