From kde-commits Tue Apr 05 01:51:46 2005 From: Thiago Macieira Date: Tue, 05 Apr 2005 01:51:46 +0000 To: kde-commits Subject: kdebase/konqueror Message-Id: <20050405015146.615CE492 () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=111266591818222 CVS commit by thiago: Encoding problems caused by the automatic conversion. This fixes the problem of non-ASCII URLs passed on the command-line that apparently no one had noticed until now. M +1 -1 konq_main.cc 1.146 --- kdebase/konqueror/konq_main.cc #1.145:1.146 @@ -175,5 +175,5 @@ extern "C" KDE_EXPORT int kdemain( int a urlToOpen = url; else - urlToOpen = KURL( KonqMisc::konqFilteredURL(0L, args->arg(i)) ); // "konqueror slashdot.org" + urlToOpen = KURL( KonqMisc::konqFilteredURL(0L, QString::fromLocal8Bit(args->arg(i))) ); // "konqueror slashdot.org" if ( !mainwin ) {