-rw-r--r-- | noncore/net/ubrowser/mainview.cpp | 9 | ||||
-rw-r--r-- | noncore/net/ubrowser/mainview.h | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/noncore/net/ubrowser/mainview.cpp b/noncore/net/ubrowser/mainview.cpp index 179fa6b..7931d1a 100644 --- a/noncore/net/ubrowser/mainview.cpp +++ b/noncore/net/ubrowser/mainview.cpp | |||
@@ -56,12 +56,21 @@ MainView::MainView(QWidget *parent, const char *name) : QMainWindow(parent, name | |||
56 | //notify me when the text of the browser has changed (like when the user clicks a link) | 56 | //notify me when the text of the browser has changed (like when the user clicks a link) |
57 | connect(browser, SIGNAL(textChanged()), this, SLOT(textChanged()) ); | 57 | connect(browser, SIGNAL(textChanged()), this, SLOT(textChanged()) ); |
58 | 58 | ||
59 | http = new HttpFactory(browser); | 59 | http = new HttpFactory(browser); |
60 | |||
61 | if( qApp->argc() > 1 ) | ||
62 | { | ||
63 | char **argv = qApp->argv(); | ||
64 | location->setEditText( argv[1] ); | ||
65 | goClicked(); | ||
66 | } | ||
60 | } | 67 | } |
61 | 68 | ||
62 | void MainView::goClicked() | 69 | void MainView::goClicked() |
63 | { | 70 | { |
71 | location->insertItem( location->currentText() ); | ||
72 | |||
64 | if(location->currentText().startsWith("http://") ) | 73 | if(location->currentText().startsWith("http://") ) |
65 | { | 74 | { |
66 | location->setEditText(location->currentText().lower()); | 75 | location->setEditText(location->currentText().lower()); |
67 | browser->setMimeSourceFactory(http); | 76 | browser->setMimeSourceFactory(http); |
diff --git a/noncore/net/ubrowser/mainview.h b/noncore/net/ubrowser/mainview.h index bd9d19c..c786eb9 100644 --- a/noncore/net/ubrowser/mainview.h +++ b/noncore/net/ubrowser/mainview.h | |||
@@ -16,8 +16,9 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |||
16 | 16 | ||
17 | #include <qpe/resource.h> | 17 | #include <qpe/resource.h> |
18 | #include <qpe/qpetoolbar.h> | 18 | #include <qpe/qpetoolbar.h> |
19 | 19 | ||
20 | #include <qapplication.h> | ||
20 | #include <qmainwindow.h> | 21 | #include <qmainwindow.h> |
21 | #include <qwidget.h> | 22 | #include <qwidget.h> |
22 | #include <qtextbrowser.h> | 23 | #include <qtextbrowser.h> |
23 | #include <qtoolbutton.h> | 24 | #include <qtoolbutton.h> |