diff options
Diffstat (limited to 'kdecore/kpalette.cpp')
-rw-r--r-- | kdecore/kpalette.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kdecore/kpalette.cpp b/kdecore/kpalette.cpp index 777340ea6..7cb14cec0 100644 --- a/kdecore/kpalette.cpp +++ b/kdecore/kpalette.cpp @@ -66,7 +66,7 @@ KPalette::KPalette(const TQString &name) // Read first line // Expected "GIMP Palette" if (paletteFile.readLine(line, maxLength) == -1) return; - if (line.find(" Palette") == -1) return; + if (line.tqfind(" Palette") == -1) return; while( paletteFile.readLine(line, maxLength) != -1) { |