From 2d1d98e22fdd24a2c5f9686c7fedc6ae26522c29 Mon Sep 17 00:00:00 2001 From: Rolando Islas Date: Fri, 1 Jan 2016 18:21:26 -0700 Subject: [PATCH] Building on Linux --- LightHost.jucer | 47 +++++++++++++++++++++++++++++++++++++++++++++ Source/IconMenu.cpp | 3 ++- 2 files changed, 49 insertions(+), 1 deletion(-) diff --git a/LightHost.jucer b/LightHost.jucer index 92a45b6..09ad20b 100644 --- a/LightHost.jucer +++ b/LightHost.jucer @@ -65,6 +65,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Source/IconMenu.cpp b/Source/IconMenu.cpp index 52c5906..9769d73 100644 --- a/Source/IconMenu.cpp +++ b/Source/IconMenu.cpp @@ -300,7 +300,8 @@ void IconMenu::menuInvocationCallback(int id, IconMenu* im) PluginDescription plugin = *im->knownPluginList.getType(im->knownPluginList.getIndexChosenByMenu(id)); String key = "pluginOrder-" + plugin.descriptiveName + plugin.version + plugin.pluginFormatName; - getAppProperties().getUserSettings()->setValue(key, time(0)); + int t = time(0); + getAppProperties().getUserSettings()->setValue(key, t); getAppProperties().saveIfNeeded(); im->activePluginList.addType(plugin);