diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-03 00:49:24 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-04 00:22:09 +0900 |
commit | 0ac52a652e631e24ac4989414b2c27b7b55ec239 (patch) | |
tree | 0517e5050037eabfcb03f1e80f9b39ab16f6737d /kdevdesigner/uilib | |
parent | 33b2598a0e14810025fd31406a689f561015e074 (diff) | |
download | tdevelop-0ac52a652e631e24ac4989414b2c27b7b55ec239.tar.gz tdevelop-0ac52a652e631e24ac4989414b2c27b7b55ec239.zip |
Replaced various '#define' with actual strings - part 5
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kdevdesigner/uilib')
-rw-r--r-- | kdevdesigner/uilib/qwidgetfactory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kdevdesigner/uilib/qwidgetfactory.cpp b/kdevdesigner/uilib/qwidgetfactory.cpp index 25f436f2..a79687a8 100644 --- a/kdevdesigner/uilib/qwidgetfactory.cpp +++ b/kdevdesigner/uilib/qwidgetfactory.cpp @@ -295,7 +295,7 @@ TQWidget *TQWidgetFactory::create( const TQString &uiFile, TQObject *connector, return 0; qwf_currFileName = uiFile; - TQWidget *w = TQWidgetFactory::create( TQT_TQIODEVICE(&f), connector, parent, name ); + TQWidget *w = TQWidgetFactory::create( &f, connector, parent, name ); if ( !qwf_forms ) qwf_forms = new TQMap<TQWidget*, TQString>; qwf_forms->insert( w, uiFile ); |