diff options
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); |