Lines 140-148
Link Here
|
140 |
XrmValue value; |
140 |
XrmValue value; |
141 |
|
141 |
|
142 |
xrm_name[0] = XrmStringToName ("pixmapFilePath"); |
142 |
xrm_name[0] = XrmStringToName ("pixmapFilePath"); |
143 |
xrm_name[1] = NULL; |
143 |
xrm_name[1] = 0; // Replaced NULL by 0. |
|
|
144 |
// XrmName/XrmQuark is of type int. M. Kraft 2023-03-12 |
144 |
xrm_class[0] = XrmStringToClass ("PixmapFilePath"); |
145 |
xrm_class[0] = XrmStringToClass ("PixmapFilePath"); |
145 |
xrm_class[1] = NULL; |
146 |
xrm_class[1] = 0; // Replaced NULL by 0. |
|
|
147 |
// XrmName/XrmQuark is of type int. M. Kraft 2023-03-12 |
146 |
if (!XrmGetDatabase(dpy)) { |
148 |
if (!XrmGetDatabase(dpy)) { |
147 |
(void) XGetDefault (dpy, "", ""); |
149 |
(void) XGetDefault (dpy, "", ""); |
148 |
} |
150 |
} |