diff options
author | Michele Calgaro <[email protected]> | 2023-12-17 20:55:11 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-17 20:55:11 +0900 |
commit | 10da9998098672ff2d6c1213bda6993adc0b6589 (patch) | |
tree | e51d16a9a5722f31d275be9ef4221730754611a4 | |
parent | b4e786481806ed3e331caa5a9a1c706858abf49d (diff) | |
download | krename-10da9998098672ff2d6c1213bda6993adc0b6589.tar.gz krename-10da9998098672ff2d6c1213bda6993adc0b6589.zip |
Replace various '#define' strings - part 6
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r-- | krename/coorddialog.cpp | 2 | ||||
-rw-r--r-- | krename/replacedialog.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/krename/coorddialog.cpp b/krename/coorddialog.cpp index 818fd55..8388b51 100644 --- a/krename/coorddialog.cpp +++ b/krename/coorddialog.cpp @@ -56,7 +56,7 @@ CoordDialog::CoordDialog( const TQString & file, TQWidget *_parent, const char * filename = new DSLineEdit( parent ); filename->setText( file ); - filename->setValidator( new TQRegExpValidator( TQRegExp( file ), TQT_TQOBJECT(this) ) ); + filename->setValidator( new TQRegExpValidator( TQRegExp( file ), this ) ); preview = new TQLabel( parent ); diff --git a/krename/replacedialog.cpp b/krename/replacedialog.cpp index 85db862..b91d5e5 100644 --- a/krename/replacedialog.cpp +++ b/krename/replacedialog.cpp @@ -190,7 +190,7 @@ void ReplaceDialog::moveFocus() void ReplaceDialog::invokeRegEdit() { - TQDialog* regExpDialog = KParts::ComponentFactory::createInstanceFromQuery<TQDialog>( "KRegExpEditor/KRegExpEditor", TQString(), TQT_TQOBJECT(this) ); + TQDialog* regExpDialog = KParts::ComponentFactory::createInstanceFromQuery<TQDialog>( "KRegExpEditor/KRegExpEditor", TQString(), this ); KRegExpEditorInterface *iface = static_cast<KRegExpEditorInterface *>( regExpDialog->tqt_cast( "KRegExpEditorInterface" ) ); if ( !iface ) |