diff options
Diffstat (limited to 'certmanager/conf/appearanceconfigpage.cpp')
-rw-r--r-- | certmanager/conf/appearanceconfigpage.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/certmanager/conf/appearanceconfigpage.cpp b/certmanager/conf/appearanceconfigpage.cpp index e0893233e..90720508a 100644 --- a/certmanager/conf/appearanceconfigpage.cpp +++ b/certmanager/conf/appearanceconfigpage.cpp @@ -19,11 +19,11 @@ In addition, as a special exception, the copyright holders give permission to link the code of this program with any edition of - the Qt library by Trolltech AS, Norway (or with modified versions - of Qt that use the same license as Qt), and distribute linked + the TQt library by Trolltech AS, Norway (or with modified versions + of TQt that use the same license as TQt), and distribute linked combinations including the two. You must obey the GNU General Public License in all respects for all of the code used other than - Qt. If you modify this file, you may extend this exception to + TQt. If you modify this file, you may extend this exception to your version of the file, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. @@ -38,8 +38,8 @@ #include <kdepimmacros.h> -AppearanceConfigurationPage::AppearanceConfigurationPage( TQWidget * parent, const char * name ) - : KCModule( parent, name ) +AppearanceConfigurationPage::AppearanceConfigurationPage( TQWidget * tqparent, const char * name ) + : KCModule( tqparent, name ) { TQVBoxLayout* lay = new TQVBoxLayout( this ); mWidget = new Kleo::AppearanceConfigWidget( this ); @@ -70,10 +70,10 @@ void AppearanceConfigurationPage::defaults() extern "C" { - KDE_EXPORT KCModule *create_kleopatra_config_appear( TQWidget *parent, const char * ) + KDE_EXPORT KCModule *create_kleopatra_config_appear( TQWidget *tqparent, const char * ) { AppearanceConfigurationPage *page = - new AppearanceConfigurationPage( parent, "kleopatra_config_appear" ); + new AppearanceConfigurationPage( tqparent, "kleopatra_config_appear" ); return page; } } |