diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-07 11:09:19 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-07 11:09:19 -0600 |
commit | 696e36a06178f50483432b9a8e806c4a1c530921 (patch) | |
tree | b2c0b4ad792acad4cb75d39038f30687cac45129 /tdeui/kaboutapplication.h | |
parent | 5466d52073af147d100482cbf633087bb9fb631b (diff) | |
download | tdelibs-696e36a06178f50483432b9a8e806c4a1c530921.tar.gz tdelibs-696e36a06178f50483432b9a8e806c4a1c530921.zip |
Rename KAbout to avoid conflicts with KDE4
Diffstat (limited to 'tdeui/kaboutapplication.h')
-rw-r--r-- | tdeui/kaboutapplication.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tdeui/kaboutapplication.h b/tdeui/kaboutapplication.h index 487ef5a20..c313460ff 100644 --- a/tdeui/kaboutapplication.h +++ b/tdeui/kaboutapplication.h @@ -41,7 +41,7 @@ * @author Waldo Bastian (bastian@kde.org) and Espen Sand (espen@kde.org) */ -class TDEUI_EXPORT KAboutApplication : public KAboutDialog +class TDEUI_EXPORT TDEAboutApplication : public TDEAboutDialog { public: /** @@ -57,7 +57,7 @@ class TDEUI_EXPORT KAboutApplication : public KAboutDialog * made visible using TQWidget::show(). Otherwise it will be * modal and must be made visible using TQWidget::exec(). */ - KAboutApplication( TQWidget *parent=0, const char *name=0, bool modal=true ); + TDEAboutApplication( TQWidget *parent=0, const char *name=0, bool modal=true ); /** * Constructor. Mostly does the same stuff as the previous constructor, except @@ -76,12 +76,12 @@ class TDEUI_EXPORT KAboutApplication : public KAboutDialog * made visible using TQWidget::show(). Otherwise it will be * modal and must be made visible using TQWidget::exec(). */ - KAboutApplication( const TDEAboutData *aboutData, TQWidget *parent=0, const char *name=0, bool modal=true ); + TDEAboutApplication( const TDEAboutData *aboutData, TQWidget *parent=0, const char *name=0, bool modal=true ); /* FIXME: The two constructors should be replaced with the following after the lib freeze: - KAboutApplication( const TDEAboutData *aboutData=0, TQWidget *parent=0, const char *name=0, bool modal=true ); + TDEAboutApplication( const TDEAboutData *aboutData=0, TQWidget *parent=0, const char *name=0, bool modal=true ); This will make buildDialog() obsolete as well (Frerich). */ |