summaryrefslogtreecommitdiff
path: root/plugintest.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2017-10-20 17:42:35 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2017-10-20 17:42:35 +0200
commit310edfd81c3ffbee0b1b8ba90061ea35392f0cb6 (patch)
tree18a80976db390270fc01142fb2f8d41a01241a3f /plugintest.h
parent36894382ff965c3751fdedb18b452d1329d3a82d (diff)
Fix missing return in createWindow
Diffstat (limited to 'plugintest.h')
-rw-r--r--plugintest.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugintest.h b/plugintest.h
index 6d33767..f2bf8d5 100644
--- a/plugintest.h
+++ b/plugintest.h
@@ -98,7 +98,7 @@ public:
// GUI
//
bool hasGUI() override;
- void createWindow(void *parent) override;
+ void* createWindow(void *parent) override;
void onDestroyWindow() override;
void onShowWindow() override;
void onHideWindow() override;