By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 2781
Collapse All | Expand All

(-)tdelibs-trinity-14.0.5~pre49+41d41d2a/tdecore/kkeyserver_x11.cpp (+10 lines)
Lines 278-283 Link Here
278
#define XF86XK_LaunchD		0x1008FF4D
278
#define XF86XK_LaunchD		0x1008FF4D
279
#define XF86XK_LaunchE		0x1008FF4E
279
#define XF86XK_LaunchE		0x1008FF4E
280
#define XF86XK_LaunchF		0x1008FF4F
280
#define XF86XK_LaunchF		0x1008FF4F
281
#define XF86XK_MonBrightnessUp		0x1008FF02  /* Monitor/panel brightness */
282
#define XF86XK_MonBrightnessDown	0x1008FF03  /* Monitor/panel brightness */
283
#define XF86XK_KbdLightOnOff		0x1008FF04  /* Keyboards may be lit     */
284
#define XF86XK_KbdBrightnessUp		0x1008FF05  /* Keyboards may be lit     */
285
#define XF86XK_KbdBrightnessDown	0x1008FF06  /* Keyboards may be lit     */
281
// end of XF86keysyms.h
286
// end of XF86keysyms.h
282
        ,
287
        ,
283
	{ Qt::Key_Standby,    XF86XK_Standby },
288
	{ Qt::Key_Standby,    XF86XK_Standby },
Lines 315-320 Link Here
315
	{ Qt::Key_LaunchD,    XF86XK_LaunchB },
320
	{ Qt::Key_LaunchD,    XF86XK_LaunchB },
316
	{ Qt::Key_LaunchE,    XF86XK_LaunchC },
321
	{ Qt::Key_LaunchE,    XF86XK_LaunchC },
317
	{ Qt::Key_LaunchF,    XF86XK_LaunchD },
322
	{ Qt::Key_LaunchF,    XF86XK_LaunchD },
323
	{ Qt::Key_MonBrightnessUp, XF86XK_MonBrightnessUp },
324
	{ Qt::Key_MonBrightnessDown, XF86XK_MonBrightnessDown },
325
	{ Qt::Key_KeyboardLightOnOff, XF86XK_KbdLightOnOff },
326
	{ Qt::Key_KeyboardBrightnessUp, XF86XK_KbdBrightnessUp },
327
	{ Qt::Key_KeyboardBrightnessDown, XF86XK_KbdBrightnessDown },
318
#endif
328
#endif
319
};
329
};
320
#endif //Q_WS_X11
330
#endif //Q_WS_X11

Return to bug 2781