Code

Make text widget for TextParams work and re-enable it
[inkscape.git] / src / live_effects / parameter / bool.cpp
index 336f42425b020b43869fd4852221cecfdebe0d5c..505a70493941dba13ede403b3d1f026d56d40573 100644 (file)
 #include "svg/stringstream.h"
 #include <gtkmm.h>
 #include "widgets/icon.h"
-
+#include "ui/widget/registered-widget.h"
 #include "inkscape.h"
 #include "verbs.h"
 #include "helper-fns.h"
 
-#define noLPEBOOLPARAM_DEBUG
-
 namespace Inkscape {
 
 namespace LivePathEffect {
@@ -48,7 +46,7 @@ BoolParam::param_readSVGValue(const gchar * strvalue)
 }
 
 gchar *
-BoolParam::param_writeSVGValue() const
+BoolParam::param_getSVGValue() const
 {
     gchar * str = g_strdup(value ? "true" : "false");
     return str;