aboutsummaryrefslogtreecommitdiff
path: root/core/src/Utils/Dialog/Dialog.cpp
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2021-03-29 19:14:07 -0700
committerrtk0c <[email protected]>2021-03-29 19:14:07 -0700
commite75e26da92424528e190a2111acfcc49c657e894 (patch)
treec9b6f0e2f98e8fef28feff3136e950b1f0e0f357 /core/src/Utils/Dialog/Dialog.cpp
parent70cc233165b5efa3a3888af34f7afce095fe6947 (diff)
Replace Dialog.hpp with portable-file-dialogs, more work on projects
Diffstat (limited to 'core/src/Utils/Dialog/Dialog.cpp')
-rw-r--r--core/src/Utils/Dialog/Dialog.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/core/src/Utils/Dialog/Dialog.cpp b/core/src/Utils/Dialog/Dialog.cpp
deleted file mode 100644
index c4459c0..0000000
--- a/core/src/Utils/Dialog/Dialog.cpp
+++ /dev/null
@@ -1,18 +0,0 @@
-// Adapted from https://github.com/aaronmjacobs/Boxer/blob/master/include/boxer/boxer.h
-#include "Dialog.hpp"
-
-namespace Dialog {
-
-Selection Show(const char* message, const char* title, Style style) {
- return Show(message, title, style, kDefaultButtons);
-}
-
-Selection Show(const char* message, const char* title, Buttons buttons) {
- return Show(message, title, kDefaultStyle, buttons);
-}
-
-Selection Show(const char* message, const char* title) {
- return Show(message, title, kDefaultStyle, kDefaultButtons);
-}
-
-} // namespace Dialog