diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:04:09 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:04:09 -0600 |
commit | a45915945ee5f36df25754586c5c4a366c3a474d (patch) | |
tree | 9160a9c8259572bc5b7cde966a4066422aef2ba5 /krename/replacedialog.cpp | |
parent | 21d0413b17e418a799acee2cb4395ed32152e2e3 (diff) | |
download | krename-a45915945ee5f36df25754586c5c4a366c3a474d.tar.gz krename-a45915945ee5f36df25754586c5c4a366c3a474d.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'krename/replacedialog.cpp')
-rw-r--r-- | krename/replacedialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/krename/replacedialog.cpp b/krename/replacedialog.cpp index becbd43..a58fbc5 100644 --- a/krename/replacedialog.cpp +++ b/krename/replacedialog.cpp @@ -41,7 +41,7 @@ ReplaceDialog::ReplaceDialog( TQValueList<replacestrings> & r, TQWidget* parent { ReplaceDialogLayout = new TQGridLayout( plainPage(), 11, 6); - list = new KListView( plainPage() ); + list = new TDEListView( plainPage() ); list->addColumn( i18n("Find") ); list->addColumn( i18n("Replace With") ); list->addColumn( i18n("Regular Expression") ); @@ -111,7 +111,7 @@ ReplaceDialog::ReplaceDialog( TQValueList<replacestrings> & r, TQWidget* parent BatchRenamer::unEscape( rs.find ); - KListViewItem* item = new KListViewItem( list ); + TDEListViewItem* item = new TDEListViewItem( list ); item->setText( 0, encode( rs.find ) ); item->setText( 1, encode( rs.replace ) ); item->setText( 2, rs.reg ? i18n("yes") : i18n("no") ); @@ -141,7 +141,7 @@ void ReplaceDialog::add() it = it->nextSibling(); } - KListViewItem* item = new KListViewItem( list, i18n("Regular expression") ); + TDEListViewItem* item = new TDEListViewItem( list, i18n("Regular expression") ); item->setText( 0, encode( text1->text() ) ); item->setText( 1, encode( text2->text() ) ); item->setText( 2, checkReg->isChecked() ? i18n("yes") : i18n("no") ); |