QCocoaKeyMapper: Remove unused member variables
These are written into, but never read from. Change-Id: I23af5dbb2d162b06ed93f32459140a8385d65a95 Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
This commit is contained in:
parent
c4c00ea7e4
commit
ad8f11c756
@ -91,8 +91,6 @@ public:
|
||||
private:
|
||||
QCFType<TISInputSourceRef> currentInputSource;
|
||||
|
||||
QLocale keyboardInputLocale;
|
||||
Qt::LayoutDirection keyboardInputDirection;
|
||||
enum { NullMode, UnicodeMode, OtherMode } keyboard_mode;
|
||||
union {
|
||||
const UCKeyboardLayout *unicode;
|
||||
|
@ -376,18 +376,7 @@ bool QCocoaKeyMapper::updateKeyboard()
|
||||
}
|
||||
currentInputSource = source;
|
||||
keyboard_dead = 0;
|
||||
CFStringRef iso639Code;
|
||||
|
||||
CFArrayRef array = static_cast<CFArrayRef>(TISGetInputSourceProperty(currentInputSource, kTISPropertyInputSourceLanguages));
|
||||
iso639Code = static_cast<CFStringRef>(CFArrayGetValueAtIndex(array, 0)); // Actually a RFC3066bis, but it's close enough
|
||||
|
||||
if (iso639Code) {
|
||||
keyboardInputLocale = QLocale(QString::fromCFString(iso639Code));
|
||||
keyboardInputDirection = keyboardInputLocale.textDirection();
|
||||
} else {
|
||||
keyboardInputLocale = QLocale::c();
|
||||
keyboardInputDirection = Qt::LeftToRight;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user