summaryrefslogtreecommitdiffstats
path: root/tools/designer/plugins/dlg/dlg2ui.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-07-07 14:56:09 +0900
committerMichele Calgaro <[email protected]>2024-07-07 14:56:09 +0900
commit87d29563e3ccdeb7fea0197e262e667ef323ff9c (patch)
tree2d674f204c5205ca577a782e1b50583afd563972 /tools/designer/plugins/dlg/dlg2ui.cpp
parent628b0bb74c3fc327efff8add9c73ada04b1cbea2 (diff)
downloadtqt3-87d29563e3ccdeb7fea0197e262e667ef323ff9c.tar.gz
tqt3-87d29563e3ccdeb7fea0197e262e667ef323ff9c.zip
Rename utility class nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'tools/designer/plugins/dlg/dlg2ui.cpp')
-rw-r--r--tools/designer/plugins/dlg/dlg2ui.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/designer/plugins/dlg/dlg2ui.cpp b/tools/designer/plugins/dlg/dlg2ui.cpp
index bb18507c5..1babf6814 100644
--- a/tools/designer/plugins/dlg/dlg2ui.cpp
+++ b/tools/designer/plugins/dlg/dlg2ui.cpp
@@ -38,7 +38,7 @@
#include <ntqfile.h>
#include <ntqframe.h>
#include <ntqmessagebox.h>
-#include <ntqregexp.h>
+#include <tqregexp.h>
#include <tqtextstream.h>
/*
@@ -870,7 +870,7 @@ bool Dlg2Ui::checkTagName( const TQDomElement& e, const TQString& tagName )
TQString Dlg2Ui::normalizeType( const TQString& type )
{
TQString t = type;
- if ( t.isEmpty() || t == TQString("enum") || t == TQString( "qcstring" ) ||
+ if ( t.isEmpty() || t == TQString("enum") || t == TQString( "tqcstring" ) ||
t == TQString("set") )
t = TQString( "tqstring" );
return t;
@@ -894,7 +894,7 @@ TQVariant Dlg2Ui::getValue( const TQDomElement& e, const TQString& tagName,
return TQVariant( isTrue(getTextValue(e)) );
} else if ( type == TQString("double") ) {
return getTextValue( e ).toDouble();
- } else if ( type == TQString("qcstring") ) {
+ } else if ( type == TQString("tqcstring") ) {
return getTextValue( e ).latin1();
} else if ( type == TQString("enum") || type == TQString("tqstring") ||
type == TQString("set") ) {