diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 04:10:07 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 04:10:07 +0000 |
commit | fd3a982e26813f5bcc82c7e89ce6fa2ad44432bf (patch) | |
tree | 9eda848e56fcb862fdfdf479adeccd95b6fe387a /kxkb/kcmmisc.cpp | |
parent | 02f67d0e1355b79b1806746efb0f2f640e57f13d (diff) | |
download | tdebase-fd3a982e26813f5bcc82c7e89ce6fa2ad44432bf.tar.gz tdebase-fd3a982e26813f5bcc82c7e89ce6fa2ad44432bf.zip |
Revert automated changes
Sorry guys, they are just not ready for prime time
Work will continue as always
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1212480 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kxkb/kcmmisc.cpp')
-rw-r--r-- | kxkb/kcmmisc.cpp | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/kxkb/kcmmisc.cpp b/kxkb/kcmmisc.cpp index 901b6bbe3..f66ea587c 100644 --- a/kxkb/kcmmisc.cpp +++ b/kxkb/kcmmisc.cpp @@ -51,7 +51,7 @@ #include <X11/Xlib.h> KeyboardConfig::KeyboardConfig (TQWidget * parent, const char *) - : KCModule (parent, "kcmtqlayout") + : KCModule (parent, "kcmlayout") { TQString wtstr; TQBoxLayout* lay = new TQVBoxLayout(this, 0, KDialog::spacingHint()); @@ -286,7 +286,7 @@ int xkb_init() &xkb_lmaj, &xkb_lmin ); } -unsigned int xkb_tqmask_modifier( XkbDescPtr xkb, const char *name ) +unsigned int xkb_mask_modifier( XkbDescPtr xkb, const char *name ) { int i; if( !xkb || !xkb->names ) @@ -298,47 +298,47 @@ unsigned int xkb_tqmask_modifier( XkbDescPtr xkb, const char *name ) char* modStr = XGetAtomName( xkb->dpy, xkb->names->vmods[i] ); if( modStr != NULL && strcmp(name, modStr) == 0 ) { - unsigned int tqmask; - XkbVirtualModsToReal( xkb, 1 << i, &tqmask ); - return tqmask; + unsigned int mask; + XkbVirtualModsToReal( xkb, 1 << i, &mask ); + return mask; } } return 0; } -unsigned int xkb_numlock_tqmask() +unsigned int xkb_numlock_mask() { XkbDescPtr xkb; if(( xkb = XkbGetKeyboard( qt_xdisplay(), XkbAllComponentsMask, XkbUseCoreKbd )) != NULL ) { - unsigned int tqmask = xkb_tqmask_modifier( xkb, "NumLock" ); + unsigned int mask = xkb_mask_modifier( xkb, "NumLock" ); XkbFreeKeyboard( xkb, 0, True ); - return tqmask; + return mask; } return 0; } int xkb_set_on() { - unsigned int tqmask; + unsigned int mask; if( !xkb_init()) return 0; - tqmask = xkb_numlock_tqmask(); - if( tqmask == 0 ) + mask = xkb_numlock_mask(); + if( mask == 0 ) return 0; - XkbLockModifiers ( qt_xdisplay(), XkbUseCoreKbd, tqmask, tqmask); + XkbLockModifiers ( qt_xdisplay(), XkbUseCoreKbd, mask, mask); return 1; } int xkb_set_off() { - unsigned int tqmask; + unsigned int mask; if( !xkb_init()) return 0; - tqmask = xkb_numlock_tqmask(); - if( tqmask == 0 ) + mask = xkb_numlock_mask(); + if( mask == 0 ) return 0; - XkbLockModifiers ( qt_xdisplay(), XkbUseCoreKbd, tqmask, 0); + XkbLockModifiers ( qt_xdisplay(), XkbUseCoreKbd, mask, 0); return 1; } #endif @@ -347,10 +347,10 @@ int xkb_set_off() int xtest_get_numlock_state() { int i; - int numlock_tqmask = 0; + int numlock_mask = 0; Window dummy1, dummy2; int dummy3, dummy4, dummy5, dummy6; - unsigned int tqmask; + unsigned int mask; KeyCode numlock_keycode = XKeysymToKeycode( qt_xdisplay(), XK_Num_Lock ); if( numlock_keycode == NoSymbol ) return 0; @@ -360,12 +360,12 @@ int xtest_get_numlock_state() ++i ) { if( map->modifiermap[ map->max_keypermod * i ] == numlock_keycode ) - numlock_tqmask = 1 << i; + numlock_mask = 1 << i; } XQueryPointer( qt_xdisplay(), DefaultRootWindow( qt_xdisplay() ), &dummy1, &dummy2, - &dummy3, &dummy4, &dummy5, &dummy6, &tqmask ); + &dummy3, &dummy4, &dummy5, &dummy6, &mask ); XFreeModifiermap( map ); - return tqmask & numlock_tqmask; + return mask & numlock_mask; } void xtest_change_numlock() |