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 ) {