summaryrefslogtreecommitdiffstats
path: root/experimental/tqtinterface/qt4/tools/qconfig
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-08-09 22:25:47 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-08-09 22:25:47 -0500
commit03256f3cd5149f3ff5f5f45765b0b0659db4e036 (patch)
treecaabe9e1c0e3edfd06ea5aefd4d7279664cd9ede /experimental/tqtinterface/qt4/tools/qconfig
parent0594950f65a713c2d12e8eb6ddd3f5f9b306ec08 (diff)
downloadtde-03256f3cd5149f3ff5f5f45765b0b0659db4e036.tar.gz
tde-03256f3cd5149f3ff5f5f45765b0b0659db4e036.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains
Diffstat (limited to 'experimental/tqtinterface/qt4/tools/qconfig')
-rw-r--r--experimental/tqtinterface/qt4/tools/qconfig/LICENSE.GPL6
-rw-r--r--experimental/tqtinterface/qt4/tools/qconfig/main.cpp4
2 files changed, 5 insertions, 5 deletions
diff --git a/experimental/tqtinterface/qt4/tools/qconfig/LICENSE.GPL b/experimental/tqtinterface/qt4/tools/qconfig/LICENSE.GPL
index 149f4aca2..3221c0305 100644
--- a/experimental/tqtinterface/qt4/tools/qconfig/LICENSE.GPL
+++ b/experimental/tqtinterface/qt4/tools/qconfig/LICENSE.GPL
@@ -59,7 +59,7 @@ modification follow.
GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
- 0. This License applies to any program or other work which tqcontains
+ 0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License. The "Program", below,
refers to any such program or work, and a "work based on the Program"
@@ -96,7 +96,7 @@ above, provided that you also meet all of these conditions:
stating that you changed the files and the date of any change.
b) You must cause any work that you distribute or publish, that in
- whole or in part tqcontains or is derived from the Program or any
+ whole or in part contains or is derived from the Program or any
part thereof, to be licensed as a whole at no charge to all third
parties under the terms of this License.
@@ -154,7 +154,7 @@ Sections 1 and 2 above provided that you also do one of the following:
The source code for a work means the preferred form of the work for
making modifications to it. For an executable work, complete source
-code means all the source code for all modules it tqcontains, plus any
+code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable. However, as a
special exception, the source code distributed need not include
diff --git a/experimental/tqtinterface/qt4/tools/qconfig/main.cpp b/experimental/tqtinterface/qt4/tools/qconfig/main.cpp
index 22b6a8bbe..39ee580d9 100644
--- a/experimental/tqtinterface/qt4/tools/qconfig/main.cpp
+++ b/experimental/tqtinterface/qt4/tools/qconfig/main.cpp
@@ -438,7 +438,7 @@ void Main::loadFeatures(const TQString& filename)
nextline = s.readLine();
}
- int colon = line.tqfind(':');
+ int colon = line.find(':');
if ( colon < 0 ) {
qDebug("Cannot parse: %s",line.ascii());
} else {
@@ -470,7 +470,7 @@ void Main::loadFeatures(const TQString& filename)
do {
TQString line = s.readLine();
- line.tqreplace(TQRegExp("# *define"),"#define");
+ line.replace(TQRegExp("# *define"),"#define");
TQStringList token = TQStringList::split(TQChar(' '),line);
if ( on ) {