diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-29 00:07:20 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-29 00:07:20 +0000 |
commit | 9ee4144afedd77175dd068e60ef09399c684dcee (patch) | |
tree | ea89d4e804b738146dca0bbded08cdc06d9817dd /kdecore/kaccelmanager.cpp | |
parent | 0d772cdcb1100285ecb0d9867fc9b795d3c8a707 (diff) | |
download | tdelibs-9ee4144afedd77175dd068e60ef09399c684dcee.tar.gz tdelibs-9ee4144afedd77175dd068e60ef09399c684dcee.zip |
Restored qt_cast()
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1217837 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdecore/kaccelmanager.cpp')
-rw-r--r-- | kdecore/kaccelmanager.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kdecore/kaccelmanager.cpp b/kdecore/kaccelmanager.cpp index d2f5f81f6..3447803d1 100644 --- a/kdecore/kaccelmanager.cpp +++ b/kdecore/kaccelmanager.cpp @@ -1,5 +1,5 @@ /* This file is part of the KDE project - Copyright (C) 2002 Matthias Hölzer-Klüpfel <mhk@kde.org> + Copyright (C) 2002 Matthias H�lzer-Kl�pfel <mhk@kde.org> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public @@ -320,7 +320,7 @@ void KAcceleratorManagerPrivate::manageWidget(TQWidget *w, Item *item) if (dynamic_cast<TQComboBox*>(w) || dynamic_cast<TQLineEdit*>(w) || dynamic_cast<TQTextEdit*>(w) || dynamic_cast<TQTextView*>(w) || - dynamic_cast<TQSpinBox*>(w) || w->tqqt_cast( "KMultiTabBar" )) + dynamic_cast<TQSpinBox*>(w) || w->qt_cast( "KMultiTabBar" )) return; // now treat 'ordinary' widgets @@ -661,7 +661,7 @@ void KAccelString::dump() The algorithm has some advantages: * it favors 'nice' accelerators (first characters in a word, etc.) - * it is quite fast, O(N²) + * it is quite fast, O(N�) * it is easy to understand :-) The disadvantages: |