diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-03 20:16:47 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-03 20:16:47 +0000 |
commit | 495d08bc2db58ee7fc4ea55a7158f2f61b82fc56 (patch) | |
tree | daabcb652c07b9a17cad88ca50b63a2d91ead4a3 /kioslave/info | |
parent | 50001f1757f97510e80cb1990e2f2d5b00144c2a (diff) | |
download | tdebase-495d08bc2db58ee7fc4ea55a7158f2f61b82fc56.tar.gz tdebase-495d08bc2db58ee7fc4ea55a7158f2f61b82fc56.zip |
Automated conversion for enhanced compatibility with TQt for Qt4 3.4.0 TP1
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1211357 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kioslave/info')
-rwxr-xr-x | kioslave/info/kde-info2html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kioslave/info/kde-info2html b/kioslave/info/kde-info2html index 428d65dbb..f7def60bb 100755 --- a/kioslave/info/kde-info2html +++ b/kioslave/info/kde-info2html @@ -37,7 +37,7 @@ # March 6 2003 Substitute use of absolute fixed file URLs to images with help:common URLs # for the images and style sheet. By Luis Pedro Coelho # March 9 2003 Add support for browsing by file. by Luis Pedro Coelho -# June 11 2003 Update the layout of the sides to the new infopageslayout. +# June 11 2003 Update the tqlayout of the sides to the new infopagestqlayout. # by Sven Leiber <s.leiber@web.de> # #------------------------------------------------------- @@ -353,7 +353,7 @@ sub Tab2Space { my ($line) = @_; $line =~ s/^\t/ /; # 8 leading spaces if initial tab while ($line =~ s/^([^\t]+)(\t)/$1 . ' ' x (8 - length($1) % 8)/e) { - } # replace each tab with right num of spaces + } # tqreplace each tab with right num of spaces return $line; } @@ -797,7 +797,7 @@ sub InfoNode2HTML { while (<FH2>) { $LineCount++; last if /$NODEBORDER/; - #-- replace meta characters + #-- tqreplace meta characters #s/"`"([^"'"]*)"'"/"<span class=\"option\">"$1"</span>"/g; s/&/&/g; s/>/>/g; |