diff options
Diffstat (limited to 'ark/extractiondialog.cpp')
-rw-r--r-- | ark/extractiondialog.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/ark/extractiondialog.cpp b/ark/extractiondialog.cpp index f4b5196..972c6b1 100644 --- a/ark/extractiondialog.cpp +++ b/ark/extractiondialog.cpp @@ -41,7 +41,7 @@ #include <kiconloader.h> #include <kurlrequester.h> #include <kurlcompletion.h> -#include <kstandarddirs.h> +#include <tdestandarddirs.h> #include <tdemessagebox.h> #include <kcombobox.h> #include <klineedit.h> @@ -122,9 +122,9 @@ ExtractionDialog::ExtractionDialog( TQWidget *parent, const char *name, m_viewFolderAfterExtraction = new TQCheckBox( i18n( "Open destination folder after extraction" ), vbox ); m_viewFolderAfterExtraction->setChecked( ArkSettings::openDestinationFolder() ); - connect( combobox, TQT_SIGNAL( returnPressed( const TQString& ) ), combobox, TQT_SLOT( addToHistory( const TQString& ) ) ); - connect( combobox->lineEdit(), TQT_SIGNAL( textChanged( const TQString& ) ), - this, TQT_SLOT( extractDirChanged( const TQString & ) ) ); + connect( combobox, TQ_SIGNAL( returnPressed( const TQString& ) ), combobox, TQ_SLOT( addToHistory( const TQString& ) ) ); + connect( combobox->lineEdit(), TQ_SIGNAL( textChanged( const TQString& ) ), + this, TQ_SLOT( extractDirChanged( const TQString & ) ) ); } ExtractionDialog::~ExtractionDialog() @@ -192,4 +192,3 @@ void ExtractionDialog::extractDirChanged(const TQString &text ) } #include "extractiondialog.moc" -// kate: space-indent off; tab-width 4; |