diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-14 18:33:16 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-14 18:33:16 -0600 |
commit | 3fbca5d9a4bd057ed5f9df138333e6c16dbdcc62 (patch) | |
tree | 22d974e6334f1ed64d7e6c31ffe9b79778dc78f1 /tdecore/svgicons | |
parent | 7120e84c0b1a203827ac6fe9cd64748a5e5e7cab (diff) | |
download | tdelibs-3fbca5d9a4bd057ed5f9df138333e6c16dbdcc62.tar.gz tdelibs-3fbca5d9a4bd057ed5f9df138333e6c16dbdcc62.zip |
Fix tdelibs FTBFS
Diffstat (limited to 'tdecore/svgicons')
-rw-r--r-- | tdecore/svgicons/ksvgiconpainter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdecore/svgicons/ksvgiconpainter.cpp b/tdecore/svgicons/ksvgiconpainter.cpp index 2f988ce78..6c4c52c6a 100644 --- a/tdecore/svgicons/ksvgiconpainter.cpp +++ b/tdecore/svgicons/ksvgiconpainter.cpp @@ -672,7 +672,7 @@ public: for(int y = 0; y < m_height; y++) { - QRgb *sl = reinterpret_cast<QRgb *>(m_image->scanLine(y)); + TQRgb *sl = reinterpret_cast<TQRgb *>(m_image->scanLine(y)); for(int x = 0; x < m_width; x++) sl[x] = tqRgba(line[x * 4], line[x * 4 + 1], line[x * 4 + 2], line[x * 4 + 3]); |