author | treke <treke> | 2002-12-17 03:47:12 (UTC) |
---|---|---|
committer | treke <treke> | 2002-12-17 03:47:12 (UTC) |
commit | 1dee9c33c12ba45134b1ccb17bc84bc7fa94eb3b (patch) (side-by-side diff) | |
tree | 2ca7f47c689e570c31e62f54b22f944271737e42 | |
parent | 2c338cc2ed1815c243cc88ed4506d1de184c19e0 (diff) | |
download | opie-1dee9c33c12ba45134b1ccb17bc84bc7fa94eb3b.zip opie-1dee9c33c12ba45134b1ccb17bc84bc7fa94eb3b.tar.gz opie-1dee9c33c12ba45134b1ccb17bc84bc7fa94eb3b.tar.bz2 |
Now use Single click to open a bookmark instead of a double click.
-rw-r--r-- | noncore/comm/keypebble/kvnc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/comm/keypebble/kvnc.cpp b/noncore/comm/keypebble/kvnc.cpp index abdb1e0..5b1dc9f 100644 --- a/noncore/comm/keypebble/kvnc.cpp +++ b/noncore/comm/keypebble/kvnc.cpp @@ -52,49 +52,49 @@ static char * menu_xpm[] = { " .+#. ", " .+. ", " .. ", " "}; const int StatusTextId = 0; KVNC::KVNC( const char *name ) : QMainWindow( 0, name ,WStyle_ContextHelp) { setCaption( tr("VNC Viewer") ); fullscreen = false; stack = new QWidgetStack( this ); setCentralWidget( stack ); bookmarkSelector=new KVNCBookmarkDlg(); stack->addWidget(bookmarkSelector,get_unique_id()); stack->raiseWidget( bookmarkSelector ); canvas = new KRFBCanvas( stack, "canvas" ); stack->addWidget(canvas,get_unique_id()); setCentralWidget( stack ); - connect( bookmarkSelector->bookmarkList, SIGNAL(doubleClicked(QListBoxItem *)), + connect( bookmarkSelector->bookmarkList, SIGNAL(clicked(QListBoxItem *)), this, SLOT(openConnection(QListBoxItem *)) ); connect( canvas->connection(), SIGNAL(statusChanged(const QString &)), this, SLOT(statusMessage(const QString &)) ); connect( canvas->connection(), SIGNAL(error(const QString &)), this, SLOT(error(const QString &)) ); connect( canvas->connection(), SIGNAL(connected()), this, SLOT(connected()) ); connect( canvas->connection(), SIGNAL(loggedIn()), this, SLOT(loggedIn()) ); connect( canvas->connection(), SIGNAL(disconnected()), this, SLOT(disconnected()) ); setupActions(); cornerButton = new QPushButton( this ); cornerButton->setPixmap( QPixmap( (const char**)menu_xpm ) ); connect( cornerButton, SIGNAL(pressed()), this, SLOT(showMenu()) ); canvas->setCornerWidget( cornerButton ); stack->raiseWidget( bookmarkSelector ); bar= new QToolBar( this ); setToolBarsMovable( false ); setRightJustification(false); |