summaryrefslogtreecommitdiff
path: root/plugingui/testmain.cc
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2021-01-03 11:50:41 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2021-01-03 11:50:41 +0100
commit756da05c384e3d9258fc07cf9441d899238503f1 (patch)
treeb3385216148d51a2378a2bed5dfc3f0a27d4f1ec /plugingui/testmain.cc
parent645250e1cd8ce9bc1faea599df7a1b05836bfeb8 (diff)
Add dggui namespace to libdggui components.
Diffstat (limited to 'plugingui/testmain.cc')
-rw-r--r--plugingui/testmain.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugingui/testmain.cc b/plugingui/testmain.cc
index 4b94083..0ac3bc5 100644
--- a/plugingui/testmain.cc
+++ b/plugingui/testmain.cc
@@ -40,14 +40,14 @@
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