1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-02-02 22:25:48 +01:00

Add missing initializers

This commit is contained in:
Tamas TEVESZ
2010-04-12 11:46:23 +02:00
committed by Carlos R. Mafra
parent 4247ac9f82
commit 62f4eff7ae
5 changed files with 8 additions and 7 deletions

View File

@@ -1600,8 +1600,8 @@ static Cursor magnifyGrabPointer(W_ColorPanel * panel)
W_Screen *scr = WMWidgetScreen(panel->win);
Pixmap magPixmap, magPixmap2;
Cursor magCursor;
XColor fgColor = { 0, 0, 0, 0, DoRed | DoGreen | DoBlue };
XColor bgColor = { 0, 0xbf00, 0xa000, 0x5000, DoRed | DoGreen | DoBlue };
XColor fgColor = { 0, 0, 0, 0, DoRed | DoGreen | DoBlue, 0 };
XColor bgColor = { 0, 0xbf00, 0xa000, 0x5000, DoRed | DoGreen | DoBlue, 0 };
/* Cursor creation stuff */
magPixmap = XCreatePixmapFromBitmapData(scr->display, W_DRAWABLE(scr),

View File

@@ -1759,6 +1759,7 @@ W_ViewDelegate _TextViewDelegate = {
NULL,
textDidResize,
NULL,
NULL
};
#define TEXT_BUFFER_INCR 8