author | treke <treke> | 2002-12-17 03:47:12 (UTC) |
---|---|---|
committer | treke <treke> | 2002-12-17 03:47:12 (UTC) |
commit | 1dee9c33c12ba45134b1ccb17bc84bc7fa94eb3b (patch) (unidiff) | |
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 | |||
@@ -72,9 +72,9 @@ KVNC::KVNC( const char *name ) : QMainWindow( 0, name ,WStyle_ContextHelp) | |||
72 | stack->addWidget(canvas,get_unique_id()); | 72 | stack->addWidget(canvas,get_unique_id()); |
73 | setCentralWidget( stack ); | 73 | setCentralWidget( stack ); |
74 | 74 | ||
75 | 75 | ||
76 | connect( bookmarkSelector->bookmarkList, SIGNAL(doubleClicked(QListBoxItem *)), | 76 | connect( bookmarkSelector->bookmarkList, SIGNAL(clicked(QListBoxItem *)), |
77 | this, SLOT(openConnection(QListBoxItem *)) ); | 77 | this, SLOT(openConnection(QListBoxItem *)) ); |
78 | connect( canvas->connection(), SIGNAL(statusChanged(const QString &)), | 78 | connect( canvas->connection(), SIGNAL(statusChanged(const QString &)), |
79 | this, SLOT(statusMessage(const QString &)) ); | 79 | this, SLOT(statusMessage(const QString &)) ); |
80 | connect( canvas->connection(), SIGNAL(error(const QString &)), | 80 | connect( canvas->connection(), SIGNAL(error(const QString &)), |