Comment 67 for bug 145337

Revision history for this message
Ryan P. Bitanga (ephebiphobic) wrote :

Luka,

You have a typo in your sources. It doesn't work because these lines:

              { "BrightnessUp", KShortcut("XF86Launch1", SLOT(pmBrightnesUp()) },
              { "BrightnessDown", KShortcut("XF86Launch2"), SLOT(pmBrightnesDown()) },

are supposed to be these linese:
              { "BrightnessUp", KShortcut("XF86Launch1"), SLOT(pmBrightnessUp()) },
              { "BrightnessDown", KShortcut("XF86Launch2"), SLOT(pmBrightnessDown()) },

Notice the missing "s"...

It most probably had nothing to do with your choice of key bindings.

Hope that helps.