diff options
author | Michele Calgaro <[email protected]> | 2023-11-24 10:56:41 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-24 10:56:41 +0900 |
commit | 8bba786d188dd896336797f05e0a452e1a01d52b (patch) | |
tree | 51963cb8a377c60f3e95d199dc25e9885680e37f /kregexpeditor/verifybuttons.cpp | |
parent | 6deb3b43d145638070e9b7ad77eb9a10f4d3a72e (diff) | |
download | tdeutils-8bba786d188dd896336797f05e0a452e1a01d52b.tar.gz tdeutils-8bba786d188dd896336797f05e0a452e1a01d52b.zip |
Replaced various '#define' with actual strings - part 3
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kregexpeditor/verifybuttons.cpp')
-rw-r--r-- | kregexpeditor/verifybuttons.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kregexpeditor/verifybuttons.cpp b/kregexpeditor/verifybuttons.cpp index eb756b2..6f5b316 100644 --- a/kregexpeditor/verifybuttons.cpp +++ b/kregexpeditor/verifybuttons.cpp @@ -102,12 +102,12 @@ VerifyButtons::VerifyButtons( TQWidget* parent, const char* name ) // TQt RegExpConverter* converter = new TQtRegExpConverter(); - _converters.append( tqMakePair( converter, static_cast<TQAction*>( 0 ) ) ); + _converters.append( qMakePair( converter, static_cast<TQAction*>( 0 ) ) ); TQString qtConverterName = converter->name(); // Emacs converter = new EmacsRegExpConverter(); - _converters.append( tqMakePair( converter, static_cast<TQAction*>( 0 ) ) ); + _converters.append( qMakePair( converter, static_cast<TQAction*>( 0 ) ) ); // -------------------------------------------------- Initialize the config menu |