summaryrefslogtreecommitdiff
path: root/src/mobile/util/messagedialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mobile/util/messagedialog.cpp')
-rw-r--r--src/mobile/util/messagedialog.cpp36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/mobile/util/messagedialog.cpp b/src/mobile/util/messagedialog.cpp
new file mode 100644
index 0000000..a68857a
--- /dev/null
+++ b/src/mobile/util/messagedialog.cpp
@@ -0,0 +1,36 @@
+/*********
+*
+* This file is part of BibleTime's source code, http://www.bibletime.info/.
+*
+* Copyright 1999-2014 by the BibleTime developers.
+* The BibleTime source code is licensed under the GNU General Public License version 2.0.
+*
+**********/
+
+#include "messagedialog.h"
+
+#include <QMessageBox>
+#include <QString>
+
+
+namespace message {
+
+int showWarning(QWidget * /*parent*/,
+ const QString & /*title*/,
+ const QString & /*text*/,
+ QMessageBox::StandardButtons /*buttons*/,
+ QMessageBox::StandardButton /*defaultButton*/) {
+ // TODO - implement showWarning
+ return 0;
+}
+
+int showQuestion(QWidget * /*parent*/,
+ const QString & /*title*/,
+ const QString & /*text*/,
+ QMessageBox::StandardButtons /*buttons*/,
+ QMessageBox::StandardButton /*defaultButton*/) {
+ // TODO - implement showQuestion
+ return 0;
+}
+
+} // namespace message