-rw-r--r-- | library/qpedialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/qpedialog.cpp b/library/qpedialog.cpp index 87d61e3..f52171f 100644 --- a/library/qpedialog.cpp +++ b/library/qpedialog.cpp @@ -17,17 +17,17 @@ ** not clear to you. ** **********************************************************************/ #include "qpedialog.h" #include <qdialog.h> -#include "qpeapplication.h" +#include <qpeapplication.h> // Allow access to nornally protected accept and reject functions class HackedPrivateQDialog : public QDialog{ public: void accept() { QDialog::accept();} void reject() { QDialog::reject();} }; |