diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:59:13 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:59:13 -0600 |
commit | 56160bf4dfe503631ef6373367b281f081bab2b4 (patch) | |
tree | 7fcea2ffd9c3420af999c3dcad0ed032eef93956 /tdecore/kpalette.cpp | |
parent | 13281e2856a2ef43bbab78c5528470309c23aa77 (diff) | |
download | tdelibs-56160bf4dfe503631ef6373367b281f081bab2b4.tar.gz tdelibs-56160bf4dfe503631ef6373367b281f081bab2b4.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 13281e2856a2ef43bbab78c5528470309c23aa77.
Diffstat (limited to 'tdecore/kpalette.cpp')
-rw-r--r-- | tdecore/kpalette.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tdecore/kpalette.cpp b/tdecore/kpalette.cpp index 8cd25569b..9cc7b5635 100644 --- a/tdecore/kpalette.cpp +++ b/tdecore/kpalette.cpp @@ -22,7 +22,7 @@ #include "kpalette.h" #include <tqfile.h> -#include <textstream.h> +#include <tqtextstream.h> #include <kstandarddirs.h> #include <kglobal.h> #include <ksavefile.h> @@ -176,7 +176,7 @@ KPalette::color(int index) if ((index < 0) || (index >= nrColors())) return TQColor(); - kolor *node = mKolorList.at(index); + kolor *node = mKolorList.tqat(index); if (!node) return TQColor(); @@ -202,7 +202,7 @@ KPalette::colorName(int index) if ((index < 0) || (index >= nrColors())) return TQString::null; - kolor *node = mKolorList.at(index); + kolor *node = mKolorList.tqat(index); if (!node) return TQString::null; @@ -227,7 +227,7 @@ KPalette::changeColor(int index, if ((index < 0) || (index >= nrColors())) return -1; - kolor *node = mKolorList.at(index); + kolor *node = mKolorList.tqat(index); if (!node) return -1; |