summaryrefslogtreecommitdiff
path: root/noncore/net/ubrowser/mainview.cpp
Unidiff
Diffstat (limited to 'noncore/net/ubrowser/mainview.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/ubrowser/mainview.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/noncore/net/ubrowser/mainview.cpp b/noncore/net/ubrowser/mainview.cpp
index 7931d1a..d3f4c57 100644
--- a/noncore/net/ubrowser/mainview.cpp
+++ b/noncore/net/ubrowser/mainview.cpp
@@ -58,13 +58,18 @@ MainView::MainView(QWidget *parent, const char *name) : QMainWindow(parent, name
58 58
59 http = new HttpFactory(browser); 59 http = new HttpFactory(browser);
60 60
61 if( qApp->argc() > 1 ) 61 if( qApp->argc() > 1 )
62 { 62 {
63 char **argv = qApp->argv(); 63 char **argv = qApp->argv();
64 location->setEditText( argv[1] ); 64 QString *argv1 = new QString( argv[1] );
65 if( !argv1->startsWith( "http://" ) && !argv1->startsWith( "/" ) )
66 {
67 argv1->insert( 0, QDir::currentDirPath()+"/" );
68 }
69 location->setEditText( *argv1 );
65 goClicked(); 70 goClicked();
66 } 71 }
67} 72}
68 73
69void MainView::goClicked() 74void MainView::goClicked()
70{ 75{