summaryrefslogtreecommitdiff
path: root/plugingui/testmain.cc
diff options
context:
space:
mode:
Diffstat (limited to 'plugingui/testmain.cc')
-rw-r--r--plugingui/testmain.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/plugingui/testmain.cc b/plugingui/testmain.cc
index 3f73039..0ac3bc5 100644
--- a/plugingui/testmain.cc
+++ b/plugingui/testmain.cc
@@ -31,23 +31,23 @@
#include <settings.h>
#include <config.h>
-#include "mainwindow.h"
-#include "window.h"
-#include "resource.h"
-#include "uitranslation.h"
+#include <dggui/window.h>
+#include <dggui/resource.h>
+#include <dggui/uitranslation.h>
+
#include "mainwindow.h"
int main()
{
#ifdef WITH_NLS
- UITranslation translation;
+ dggui::UITranslation translation;
#endif // WITH_NLS
INFO(example, "We are up and running");
void* native_window_handle{nullptr};
#ifndef UI_PUGL
- GUI::Window parent{nullptr};
+ dggui::Window parent{nullptr};
parent.setCaption("PluginGui Test Application");
native_window_handle = parent.getNativeWindowHandle();
#endif
@@ -57,7 +57,7 @@ int main()
#ifndef UI_PUGL
CONNECT(&parent, eventHandler()->closeNotifier, &main_window,
- &GUI::MainWindow::closeEventHandler);
+ &GUI::MainWindow::closeEventHandler);
parent.show();
#endif