From 5159cd2beb2e87806a5b54e9991b7895285c9d3e Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 27 Jan 2013 01:04:16 -0600 Subject: Rename a number of libraries and executables to avoid conflicts with KDE4 --- kio/kfile/tests/kfdtest.cpp | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 kio/kfile/tests/kfdtest.cpp (limited to 'kio/kfile/tests/kfdtest.cpp') diff --git a/kio/kfile/tests/kfdtest.cpp b/kio/kfile/tests/kfdtest.cpp deleted file mode 100644 index 867b9b4a8..000000000 --- a/kio/kfile/tests/kfdtest.cpp +++ /dev/null @@ -1,34 +0,0 @@ -#include "kfdtest.h" - -#include -#include -#include -#include -#include - -KFDTest::KFDTest( const TQString& startDir, TQObject *parent, const char *name ) - : TQObject( parent, name ), - m_startDir( startDir ) -{ - TQTimer::singleShot( 1000, this, TQT_SLOT( doit() )); -} - -void KFDTest::doit() -{ - KFileDialog *dlg = new KFileDialog( m_startDir, TQString::null, 0L, - "file dialog", true ); - dlg->setMode( KFile::File); - dlg->setOperationMode( KFileDialog::Saving ); - TQStringList filter; - filter << "all/allfiles" << "text/plain"; - dlg->setMimeFilter( filter, "all/allfiles" ); - - if ( dlg->exec() == KDialog::Accepted ) - { - KMessageBox::information(0, TQString::fromLatin1("You selected the file: %1").arg( dlg->selectedURL().prettyURL() )); - } - -// tqApp->quit(); -} - -#include "kfdtest.moc" -- cgit v1.2.3