diff options
Diffstat (limited to 'tools/designer/uic/form.cpp')
-rw-r--r-- | tools/designer/uic/form.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/designer/uic/form.cpp b/tools/designer/uic/form.cpp index a9c950cc6..5abe9c8e3 100644 --- a/tools/designer/uic/form.cpp +++ b/tools/designer/uic/form.cpp @@ -289,7 +289,7 @@ void Uic::createFormDecl( const TQDomElement &e ) for ( i = 1; i < (int) nl.length(); i++ ) { // begin at 1, 0 is the toplevel widget TQString s = getClassName( nl.item(i).toElement() ); if ( s == "TQLayoutWidget" ) - continue; // hide qlayoutwidgets + continue; // hide tqlayoutwidgets if ( s == "Line" ) s = "TQFrame"; if ( !(nofwd && customWidgets.contains(s)) ) @@ -803,7 +803,7 @@ void Uic::createFormImpl( const TQDomElement &e ) for ( i = 1; i < (int) nl.length(); i++ ) { // start at 1, 0 is the toplevel widget TQString name = getClassName( nl.item(i).toElement() ); if ( name == "Spacer" ) { - globalIncludes += "ntqlayout.h"; + globalIncludes += "tqlayout.h"; globalIncludes += "ntqapplication.h"; continue; } @@ -826,7 +826,7 @@ void Uic::createFormImpl( const TQDomElement &e ) out << "#include <" << *it << ">" << endl; } - out << "#include <ntqlayout.h>" << endl; + out << "#include <tqlayout.h>" << endl; out << "#include <tqtooltip.h>" << endl; out << "#include <tqwhatsthis.h>" << endl; if ( objClass == "TQMainWindow" ) { |