author | alwin <alwin> | 2004-02-27 01:17:31 (UTC) |
---|---|---|
committer | alwin <alwin> | 2004-02-27 01:17:31 (UTC) |
commit | ad932d21d169250e11b709327b5e9485599b8404 (patch) (side-by-side diff) | |
tree | b56e0bf610b695941fcdbe798310c663c2aaae72 | |
parent | 8de117d74a9a0672ae6ec809a1a17fdb29226290 (diff) | |
download | opie-ad932d21d169250e11b709327b5e9485599b8404.zip opie-ad932d21d169250e11b709327b5e9485599b8404.tar.gz opie-ad932d21d169250e11b709327b5e9485599b8404.tar.bz2 |
included the wrong ofiledialog.h
-rw-r--r-- | core/applets/screenshotapplet/inputDialog.cpp | 4 |
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 @@ -9,9 +9,9 @@ #include "inputDialog.h" #include <qpe/resource.h> -#include <opie/ofiledialog.h> +#include <opie2/ofiledialog.h> #include <qlineedit.h> #include <qlayout.h> #include <qvariant.h> @@ -60,8 +60,8 @@ void InputDialog::browse() { types.insert("All Media Files", all ); 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); } |