[SCM] calf/master: + DSSI GUI: add missing configure support

js at users.alioth.debian.org js at users.alioth.debian.org
Tue May 7 15:37:30 UTC 2013


The following commit has been merged in the master branch:
commit abb9c4a1152dc299e5490f223b88f04356ee9424
Author: kfoltman <kfoltman at 78b06b96-2940-0410-b7fc-879d825d01d8>
Date:   Fri Aug 8 21:12:59 2008 +0000

    + DSSI GUI: add missing configure support
    
    
    git-svn-id: https://calf.svn.sourceforge.net/svnroot/calf/trunk@262 78b06b96-2940-0410-b7fc-879d825d01d8

diff --git a/src/dssigui.cpp b/src/dssigui.cpp
index 2ba2d8f..3fb9801 100644
--- a/src/dssigui.cpp
+++ b/src/dssigui.cpp
@@ -170,6 +170,13 @@ struct plugin_proxy: public plugin_proxy_base, public line_graph_iface
             client->send("/configure", str);
         }
     }
+    char *configure(const char *key, const char *value) { 
+        cfg_vars[key] = value;
+        osc_inline_typed_strstream str;
+        str << key << value;
+        client->send("/configure", str);
+        return NULL;
+    }
     void send_configures(send_configure_iface *sci) { 
         for (map<string, string>::iterator i = cfg_vars.begin(); i != cfg_vars.end(); i++)
             sci->send_configure(i->first.c_str(), i->second.c_str());

-- 
calf audio plugins packaging



More information about the pkg-multimedia-commits mailing list