From 0b698e7f63ae250f366edfd788b09759bf293056 Mon Sep 17 00:00:00 2001 From: Krisjanis Rijnieks Date: Mon, 5 Sep 2016 20:20:53 +0200 Subject: [PATCH] Add float return value to GuiBaseWidget::getScale --- src/Application/GuiBaseWidget.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Application/GuiBaseWidget.h b/src/Application/GuiBaseWidget.h index b553e41..5bc0dfd 100644 --- a/src/Application/GuiBaseWidget.h +++ b/src/Application/GuiBaseWidget.h @@ -21,7 +21,7 @@ class GuiBaseWidget { virtual bool inside(float x, float y) = 0; - virtual float getScale(){} + virtual float getScale(){ return 0.0f; } ofEvent guiWidgetEvent; };