diff options
author | Michele Calgaro <[email protected]> | 2023-11-24 10:47:08 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-24 22:29:31 +0900 |
commit | 32a52075874929d609602ee52bdb24b18b8e17dc (patch) | |
tree | ee3f82667eedf41a1f43906f63ffbbb307e2ca6c /libk3b/tools/k3bintmapcombobox.cpp | |
parent | 21fdca70fe43b87a4370c8a5d805783f859e70ca (diff) | |
download | k3b-32a52075874929d609602ee52bdb24b18b8e17dc.tar.gz k3b-32a52075874929d609602ee52bdb24b18b8e17dc.zip |
Replaced various '#define' with actual strings - part 3
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit a505e95cbfde0aa2edbbd08af0ca4a00fd276d4a)
Diffstat (limited to 'libk3b/tools/k3bintmapcombobox.cpp')
-rw-r--r-- | libk3b/tools/k3bintmapcombobox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libk3b/tools/k3bintmapcombobox.cpp b/libk3b/tools/k3bintmapcombobox.cpp index 3dd9731..c78280e 100644 --- a/libk3b/tools/k3bintmapcombobox.cpp +++ b/libk3b/tools/k3bintmapcombobox.cpp @@ -82,7 +82,7 @@ bool K3bIntMapComboBox::insertItem( int value, const TQString& text, const TQStr index = KComboBox::count(); d->valueIndexMap[value] = index; - d->indexValueDescriptionMap[index] = tqMakePair<int, TQString>( value, description ); + d->indexValueDescriptionMap[index] = qMakePair<int, TQString>( value, description ); KComboBox::insertItem( text ); |