summaryrefslogtreecommitdiff
authorllornkcor <llornkcor>2005-08-16 09:05:22 (UTC)
committer llornkcor <llornkcor>2005-08-16 09:05:22 (UTC)
commit2176aa6c353e794798aa8ecddc28be365e94989c (patch) (unidiff)
tree595d31e18e427fbe93fed75efe70d952b9eacab7
parente49f60f79b86a6feb3cae4bc33c19123deec4eb3 (diff)
downloadopie-2176aa6c353e794798aa8ecddc28be365e94989c.zip
opie-2176aa6c353e794798aa8ecddc28be365e94989c.tar.gz
opie-2176aa6c353e794798aa8ecddc28be365e94989c.tar.bz2
set tab order and fix other things.
Diffstat (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 )
50 mountpt->insertItem("/mnt/samba2",-1); 50 mountpt->insertItem("/mnt/samba2",-1);
51 mountpt->insertItem("/mnt/samba3",-1); 51 mountpt->insertItem("/mnt/samba3",-1);
52 52
53// TextViewOutput 53 setTabOrder(BtnScan, username);
54 setTabOrder(username, password);
55 setTabOrder(password, CBHost);
56 setTabOrder(CBHost, TextViewOutput);
57 setTabOrder(TextViewOutput, mountpt);
58 setTabOrder(mountpt, DoItBtn);
59 setTabOrder(DoItBtn, UnmountBtn);
54 60
55 top_element = NULL; 61 top_element = NULL;
56 scanning = false; 62 scanning = false;
@@ -65,6 +71,7 @@ void Qsmb::clear()
65 if (scanning) return; 71 if (scanning) return;
66 ListViewScan->clear(); 72 ListViewScan->clear();
67 TextViewOutput->setText(""); 73 TextViewOutput->setText("");
74 CBHost->clear();
68 top_element = NULL; 75 top_element = NULL;
69} 76}
70 77
@@ -101,7 +108,8 @@ void* runitm(void* arg)
101 108
102void Qsmb::scan() 109void Qsmb::scan()
103{ 110{
104 if (scanning) return; 111 clear();
112// if (scanning) return;
105 scanning = true; 113 scanning = true;
106 114
107 QString match; 115 QString match;