summaryrefslogtreecommitdiff
path: root/core/applets/screenshotapplet
authoralwin <alwin>2004-02-27 01:17:31 (UTC)
committer alwin <alwin>2004-02-27 01:17:31 (UTC)
commitad932d21d169250e11b709327b5e9485599b8404 (patch) (side-by-side diff)
treeb56e0bf610b695941fcdbe798310c663c2aaae72 /core/applets/screenshotapplet
parent8de117d74a9a0672ae6ec809a1a17fdb29226290 (diff)
downloadopie-ad932d21d169250e11b709327b5e9485599b8404.zip
opie-ad932d21d169250e11b709327b5e9485599b8404.tar.gz
opie-ad932d21d169250e11b709327b5e9485599b8404.tar.bz2
included the wrong ofiledialog.h
Diffstat (limited to 'core/applets/screenshotapplet') (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/screenshotapplet/inputDialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/applets/screenshotapplet/inputDialog.cpp b/core/applets/screenshotapplet/inputDialog.cpp
index da8e276..f506dfd 100644
--- a/core/applets/screenshotapplet/inputDialog.cpp
+++ b/core/applets/screenshotapplet/inputDialog.cpp
@@ -10,7 +10,7 @@
#include <qpe/resource.h>
-#include <opie/ofiledialog.h>
+#include <opie2/ofiledialog.h>
#include <qlineedit.h>
#include <qlayout.h>
@@ -61,7 +61,7 @@ void InputDialog::browse() {
types.insert("Audio", audio );
types.insert("Video", video );
- QString str = OFileDialog::getOpenFileName( 1,"/","", types, 0 );
+ QString str = Opie::OFileDialog::getOpenFileName( 1,"/","", types, 0 );
LineEdit1->setText(str);
}