summaryrefslogtreecommitdiffstats
path: root/src/common/global/about.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/global/about.h')
-rw-r--r--src/common/global/about.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/common/global/about.h b/src/common/global/about.h
index adfa86b..920eabc 100644
--- a/src/common/global/about.h
+++ b/src/common/global/about.h
@@ -14,22 +14,22 @@
namespace Piklab
{
//-----------------------------------------------------------------------------
-class OptionList : public TQValueList<KCmdLineOptions>
+class OptionList : public TQValueList<TDECmdLineOptions>
{
public:
OptionList() : _options(0) {}
- OptionList(const KCmdLineOptions *options);
+ OptionList(const TDECmdLineOptions *options);
virtual ~OptionList() { delete[] _options; }
- const KCmdLineOptions *ptr() const;
+ const TDECmdLineOptions *ptr() const;
private:
- mutable KCmdLineOptions *_options;
+ mutable TDECmdLineOptions *_options;
};
//---------------------------------------------------------------------------
enum UrlType { Homepage = 0, Support, BugReport, Nb_UrlTypes };
extern const char * const URLS[Nb_UrlTypes];
-extern void init(TDEAboutData *about, int argc, char **argv, bool gui, const KCmdLineOptions *options);
+extern void init(TDEAboutData *about, int argc, char **argv, bool gui, const TDECmdLineOptions *options);
//---------------------------------------------------------------------------
class AboutData : public TDEAboutData