diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-15 15:08:51 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-15 15:08:51 -0600 |
commit | fb652a2be46ce1a2081e5dde268cd9f4ebe6fdd0 (patch) | |
tree | a01fcd88aa65a77c2b2e12ba1a55851ddfe5afcc /tdeprint/util.cpp | |
parent | 3fbca5d9a4bd057ed5f9df138333e6c16dbdcc62 (diff) | |
download | tdelibs-fb652a2be46ce1a2081e5dde268cd9f4ebe6fdd0.tar.gz tdelibs-fb652a2be46ce1a2081e5dde268cd9f4ebe6fdd0.zip |
Fix kdelibs FTBFS on native TQt3
Diffstat (limited to 'tdeprint/util.cpp')
-rw-r--r-- | tdeprint/util.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdeprint/util.cpp b/tdeprint/util.cpp index b4025a087..b5d6e06d5 100644 --- a/tdeprint/util.cpp +++ b/tdeprint/util.cpp @@ -24,8 +24,8 @@ void urlToSmb(const KURL& url, TQString& work, TQString& server, TQString& print { if (url.protocol() != "smb") return; - QString h = url.host(); - QStringList l = TQStringList::split('/', url.path(), false); + TQString h = url.host(); + TQStringList l = TQStringList::split('/', url.path(), false); if (l.count() > 1) { work = h; |