summaryrefslogtreecommitdiff
path: root/noncore/net
authorllornkcor <llornkcor>2005-08-16 09:05:22 (UTC)
committer llornkcor <llornkcor>2005-08-16 09:05:22 (UTC)
commit2176aa6c353e794798aa8ecddc28be365e94989c (patch) (side-by-side diff)
tree595d31e18e427fbe93fed75efe70d952b9eacab7 /noncore/net
parente49f60f79b86a6feb3cae4bc33c19123deec4eb3 (diff)
downloadopie-2176aa6c353e794798aa8ecddc28be365e94989c.zip
opie-2176aa6c353e794798aa8ecddc28be365e94989c.tar.gz
opie-2176aa6c353e794798aa8ecddc28be365e94989c.tar.bz2
set tab order and fix other things.
Diffstat (limited to 'noncore/net') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opie-smb/qsmb.cpp12
1 files changed, 10 insertions, 2 deletions
diff --git a/noncore/net/opie-smb/qsmb.cpp b/noncore/net/opie-smb/qsmb.cpp
index b978b46..e2ddc7f 100644
--- a/noncore/net/opie-smb/qsmb.cpp
+++ b/noncore/net/opie-smb/qsmb.cpp
@@ -50,7 +50,13 @@ Qsmb::Qsmb( QWidget* parent, const char* name, WFlags fl )
mountpt->insertItem("/mnt/samba2",-1);
mountpt->insertItem("/mnt/samba3",-1);
-// TextViewOutput
+ setTabOrder(BtnScan, username);
+ setTabOrder(username, password);
+ setTabOrder(password, CBHost);
+ setTabOrder(CBHost, TextViewOutput);
+ setTabOrder(TextViewOutput, mountpt);
+ setTabOrder(mountpt, DoItBtn);
+ setTabOrder(DoItBtn, UnmountBtn);
top_element = NULL;
scanning = false;
@@ -65,6 +71,7 @@ void Qsmb::clear()
if (scanning) return;
ListViewScan->clear();
TextViewOutput->setText("");
+ CBHost->clear();
top_element = NULL;
}
@@ -101,7 +108,8 @@ void* runitm(void* arg)
void Qsmb::scan()
{
- if (scanning) return;
+ clear();
+// if (scanning) return;
scanning = true;
QString match;