diff options
author | hjk <qtc-committer@nokia.com> | 2009-05-19 12:19:40 +0200 |
---|---|---|
committer | hjk <qtc-committer@nokia.com> | 2009-05-19 12:19:40 +0200 |
commit | ec9606bc65aaee81a4defea64afe58594349472a (patch) | |
tree | 6315f0f07b99f3e99b2f39efbd52cd634441bd65 /tools/kmap2qmap | |
parent | 9f9ede616079998f8ba7bf6fd446f39ce74b0400 (diff) | |
download | qt4-tools-ec9606bc65aaee81a4defea64afe58594349472a.tar.gz |
compile fixes with namespaces
Diffstat (limited to 'tools/kmap2qmap')
-rw-r--r-- | tools/kmap2qmap/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/kmap2qmap/main.cpp b/tools/kmap2qmap/main.cpp index b518392d73..12d91c6b66 100644 --- a/tools/kmap2qmap/main.cpp +++ b/tools/kmap2qmap/main.cpp @@ -384,10 +384,12 @@ static const symbol_synonyms_t symbol_synonyms[] = { static const int symbol_synonyms_size = sizeof(symbol_synonyms)/sizeof(symbol_synonyms_t); // makes the generated array in --header mode a bit more human readable +QT_BEGIN_NAMESPACE static bool operator<(const QWSKeyboard::Mapping &m1, const QWSKeyboard::Mapping &m2) { return m1.keycode != m2.keycode ? m1.keycode < m2.keycode : m1.modifiers < m2.modifiers; } +QT_END_NAMESPACE class KeymapParser { public: |