]> git.lyx.org Git - features.git/blobdiff - src/frontends/qt4/QKeySymbol.cpp
Whitespace cleanup
[features.git] / src / frontends / qt4 / QKeySymbol.cpp
index 366b48e811a8b49969a4920151c1fa13fcc6a6a5..c44e8e2f45a19e8b66cf0fcd5b254789b1123dca 100644 (file)
@@ -149,7 +149,7 @@ char_type QKeySymbol::getUCSEncoded() const
                                << text_[i].unicode() << endl;
                }
        }
-       
+
        // Only one UCS4 character at the end.
        docstring ucs4_text = qstring_to_ucs4(text_);
        return ucs4_text[0];
@@ -166,10 +166,10 @@ docstring const QKeySymbol::print(key_modifier::state mod, bool forgui) const
                tmpkey += Qt::CTRL;
        if (mod & key_modifier::alt)
                tmpkey += Qt::ALT;
-       
+
        QKeySequence seq(tmpkey);
 
-       return qstring_to_ucs4(seq.toString(forgui ? QKeySequence::NativeText 
+       return qstring_to_ucs4(seq.toString(forgui ? QKeySequence::NativeText
                                            : QKeySequence::PortableText));
 }