Displaying 3 results from an estimated 3 matches for "compsetstringoption".
2007 Jan 10
1
Compiz segfault
since compiz > 0.3.4; it segfault randomly at startup...
So, sometime it works, sometime not :( No problem with 0.3.4.
Running gdb, i 've got this:
Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread -1221977856 (LWP 19014)]
0x08068fb8 in compSetStringOption (option=0x816ea60, value=0xbfca2888)
at option.c:154
154 if (strcmp (option->rest.s.string[i], s) ==0)
David, if i can give you more information in any way, tell me ;)
Cedric
2007 Oct 12
1
[PATCH] Start window decorator on all screens.
...anged, 4 insertions(+), 11 deletions(-)
diff --git a/plugins/decoration.c b/plugins/decoration.c
index ef68ba8..39670ab 100644
--- a/plugins/decoration.c
+++ b/plugins/decoration.c
@@ -1145,21 +1145,14 @@ decorSetDisplayOption (CompPlugin *plugin,
case DECOR_DISPLAY_OPTION_COMMAND:
if (compSetStringOption (o, value))
{
- if (display->screens && *o->value.s != '\0')
+ CompScreen *s;
+
+ for (s = display->screens; s; s = s->next)
{
DECOR_SCREEN (display->screens);
- /* run decorator command if no decorator is present on
- first screen */...
2006 Nov 12
1
[PATCH] Annotate shapes, text and dbus support
...case ANNO_DISPLAY_OPTION_STROKE_COLOR:
if (compSetColorOption (o, value))
return TRUE;
+ break;
+ case ANNO_DISPLAY_OPTION_LINE_WIDTH:
+ case ANNO_DISPLAY_OPTION_STROKE_WIDTH:
+ if (compSetFloatOption (o, value))
+ return TRUE;
+ break;
+ case ANNO_DISPLAY_OPTION_TOOL:
+ if (compSetStringOption (o, value))
+ return TRUE;
+ break;
default:
break;
}