summaryrefslogtreecommitdiffstats
path: root/src/sp-feturbulence.cpp
diff options
context:
space:
mode:
authorBryce Harrington <bryce@bryceharrington.org>2008-01-06 22:30:35 +0000
committerbryce <bryce@users.sourceforge.net>2008-01-06 22:30:35 +0000
commitc3de16bd2f5755f4e5dc9ed589067bb54b2251fc (patch)
tree5ec9200093704512228cd584c2a09238542fe88b /src/sp-feturbulence.cpp
parentr17530@shi: ted | 2008-01-06 13:50:53 -0800 (diff)
downloadinkscape-c3de16bd2f5755f4e5dc9ed589067bb54b2251fc.tar.gz
inkscape-c3de16bd2f5755f4e5dc9ed589067bb54b2251fc.zip
Fix missing tooltips in LPE's. (Closes LP: #178471)
Whitespace cleanup. (bzr r4413)
Diffstat (limited to 'src/sp-feturbulence.cpp')
-rw-r--r--src/sp-feturbulence.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sp-feturbulence.cpp b/src/sp-feturbulence.cpp
index d95a921f1..5d351884c 100644
--- a/src/sp-feturbulence.cpp
+++ b/src/sp-feturbulence.cpp
@@ -156,10 +156,10 @@ sp_feTurbulence_set(SPObject *object, unsigned int key, gchar const *value)
double read_num;
bool read_bool;
NR::FilterTurbulenceType read_type;
-
+
switch(key) {
/*DEAL WITH SETTING ATTRIBUTES HERE*/
-
+
case SP_ATTR_BASEFREQUENCY:
feTurbulence->baseFrequency.set(value);
//From SVG spec: If two <number>s are provided, the first number represents a base frequency in the X direction and the second value represents a base frequency in the Y direction. If one number is provided, then that value is used for both X and Y.
@@ -188,7 +188,7 @@ sp_feTurbulence_set(SPObject *object, unsigned int key, gchar const *value)
read_bool = sp_feTurbulence_read_stitchTiles(value);
if (read_bool != feTurbulence->stitchTiles){
feTurbulence->stitchTiles = read_bool;
- feTurbulence->updated = false;
+ feTurbulence->updated = false;
object->parent->requestModified(SP_OBJECT_MODIFIED_FLAG);
}
break;
@@ -196,7 +196,7 @@ sp_feTurbulence_set(SPObject *object, unsigned int key, gchar const *value)
read_type = sp_feTurbulence_read_type(value);
if (read_type != feTurbulence->type){
feTurbulence->type = read_type;
- feTurbulence->updated = false;
+ feTurbulence->updated = false;
object->parent->requestModified(SP_OBJECT_MODIFIED_FLAG);
}
break;