diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:37:34 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:37:34 -0600 |
commit | 27075bc698a12dbc10e76618d83d952bd9d579ef (patch) | |
tree | 079e27500c91feba0ad2a67ddfe97ddfeb05d6df /kommander/editor/widgetfactory.cpp | |
parent | 78c422fd8a2f2d2bc5650bddcb743442f1472cb5 (diff) | |
download | tdewebdev-27075bc698a12dbc10e76618d83d952bd9d579ef.tar.gz tdewebdev-27075bc698a12dbc10e76618d83d952bd9d579ef.zip |
Rename additional global TQt functions
Diffstat (limited to 'kommander/editor/widgetfactory.cpp')
-rw-r--r-- | kommander/editor/widgetfactory.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kommander/editor/widgetfactory.cpp b/kommander/editor/widgetfactory.cpp index 9e7f14a8..f5243910 100644 --- a/kommander/editor/widgetfactory.cpp +++ b/kommander/editor/widgetfactory.cpp @@ -639,7 +639,7 @@ int EditorToolBox::count() const TQWidget *WidgetFactory::create( int id, TQWidget *parent, const char *name, bool init, const TQRect *r, Qt::Orientation orient ) { TQString n = WidgetDatabase::className(id); - //qDebug("Trying to create '%s'", n.latin1()); + //tqDebug("Trying to create '%s'", n.latin1()); if (n.isEmpty()) return 0; @@ -653,7 +653,7 @@ TQWidget *WidgetFactory::create( int id, TQWidget *parent, const char *name, boo TQString str = WidgetDatabase::createWidgetName(id); const char *s = str.latin1(); w = createWidget(n, parent, name ? name : s, init, r, orient); - //qDebug("Trying to create '%s', widget (id=%d) - %s", s, id, w ? "successful" : "failure"); + //tqDebug("Trying to create '%s', widget (id=%d) - %s", s, id, w ? "successful" : "failure"); if (!w && WidgetDatabase::isCustomWidget(id)) w = createCustomWidget(parent, name ? name : s, MetaDataBase::customWidget(id)); if (!w) @@ -1141,7 +1141,7 @@ TQWidget *WidgetFactory::createWidget( const TQString &className, TQWidget *pare } else if (className == "Wizard") { - //qDebug("Creating Wizard..."); + //tqDebug("Creating Wizard..."); TQWizard *wiz; if (parent && parent->inherits("FormWindow")) wiz = new QDesignerWizard(parent, name); |