diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
commit | ffe8a83e053396df448e9413828527613ca3bd46 (patch) | |
tree | a73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kdeui/kaboutapplication.h | |
parent | 682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff) | |
download | tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdeui/kaboutapplication.h')
-rw-r--r-- | kdeui/kaboutapplication.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kdeui/kaboutapplication.h b/kdeui/kaboutapplication.h index b3c0ea632..d8356ce66 100644 --- a/kdeui/kaboutapplication.h +++ b/kdeui/kaboutapplication.h @@ -54,10 +54,10 @@ class KDEUI_EXPORT KAboutApplication : public KAboutDialog * @param name Internal name of the widget. This name is not used in the * caption. * @param modal If false, this widget will be modeless and must be - * made visible using QWidget::show(). Otherwise it will be - * modal and must be made visible using QWidget::exec(). + * made visible using TQWidget::show(). Otherwise it will be + * modal and must be made visible using TQWidget::exec(). */ - KAboutApplication( QWidget *parent=0, const char *name=0, bool modal=true ); + KAboutApplication( TQWidget *parent=0, const char *name=0, bool modal=true ); /** * Constructor. Mostly does the same stuff as the previous constructor, except @@ -73,15 +73,15 @@ class KDEUI_EXPORT KAboutApplication : public KAboutDialog * @param name Internal name of the widget. This name is not used in the * caption. * @param modal If false, this widget will be modeless and must be - * made visible using QWidget::show(). Otherwise it will be - * modal and must be made visible using QWidget::exec(). + * made visible using TQWidget::show(). Otherwise it will be + * modal and must be made visible using TQWidget::exec(). */ - KAboutApplication( const KAboutData *aboutData, QWidget *parent=0, const char *name=0, bool modal=true ); + KAboutApplication( const KAboutData *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 KAboutData *aboutData=0, QWidget *parent=0, const char *name=0, bool modal=true ); + KAboutApplication( const KAboutData *aboutData=0, TQWidget *parent=0, const char *name=0, bool modal=true ); This will make buildDialog() obsolete as well (Frerich). */ |