diff options
Diffstat (limited to 'src/commandline.h')
-rw-r--r-- | src/commandline.h | 6 |
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; }; |