summaryrefslogtreecommitdiffstats
path: root/src/gui/sendfileform.ui.h
diff options
context:
space:
mode:
authorMichal Kubecek <mkubecek@suse.cz>2015-04-14 12:50:55 +0200
committerMichal Kubecek <mkubecek@suse.cz>2015-04-15 10:53:25 +0200
commit9d3babea67fb5463e5b5bbd69a31131516476b96 (patch)
tree6725ffa4aa08d6a4df6af26068c113f00be46975 /src/gui/sendfileform.ui.h
parent10478170cb97e558899dcbdd3a6fef6a0e79a124 (diff)
downloadtwinkle-9d3babea67fb5463e5b5bbd69a31131516476b96.tar
twinkle-9d3babea67fb5463e5b5bbd69a31131516476b96.tar.gz
twinkle-9d3babea67fb5463e5b5bbd69a31131516476b96.tar.lz
twinkle-9d3babea67fb5463e5b5bbd69a31131516476b96.tar.xz
twinkle-9d3babea67fb5463e5b5bbd69a31131516476b96.zip
Qt4 port step 2: apply qt3toqt4
Diffstat (limited to 'src/gui/sendfileform.ui.h')
-rw-r--r--src/gui/sendfileform.ui.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/sendfileform.ui.h b/src/gui/sendfileform.ui.h
index 067b6dd..46c9896 100644
--- a/src/gui/sendfileform.ui.h
+++ b/src/gui/sendfileform.ui.h
@@ -71,7 +71,7 @@ void SendFileForm::chooseFile()
d->setOperationMode(KFileDialog::Other);
connect(d, SIGNAL(okClicked()), this, SLOT(setFilename()));
#else
- QFileDialog *d = new QFileDialog(QString::null, QString::null, this, 0, true);
+ Q3FileDialog *d = new Q3FileDialog(QString::null, QString::null, this, 0, true);
MEMMAN_NEW(d);
connect(d, SIGNAL(fileSelected(const QString &)), this, SLOT(setFilename()));
@@ -98,7 +98,7 @@ void SendFileForm::setFilename()
KFileDialog *d = dynamic_cast<KFileDialog *>(_chooseFileDialog);
filename = d->selectedFile();
#else
- QFileDialog *d = dynamic_cast<QFileDialog *>(_chooseFileDialog);
+ Q3FileDialog *d = dynamic_cast<Q3FileDialog *>(_chooseFileDialog);
filename = d->selectedFile();
#endif