author | umopapisdn <umopapisdn> | 2002-09-24 21:46:58 (UTC) |
---|---|---|
committer | umopapisdn <umopapisdn> | 2002-09-24 21:46:58 (UTC) |
commit | 5fb5e6b63bbbffcc240380c57f186991253d0bd2 (patch) (unidiff) | |
tree | fb57f05452055f0106f56f2c30ef5d118e918e21 | |
parent | 3552c21c70e3a2c99ace9ea4711e43df46a5e246 (diff) | |
download | opie-5fb5e6b63bbbffcc240380c57f186991253d0bd2.zip opie-5fb5e6b63bbbffcc240380c57f186991253d0bd2.tar.gz opie-5fb5e6b63bbbffcc240380c57f186991253d0bd2.tar.bz2 |
*** empty log message ***
-rw-r--r-- | noncore/settings/usermanager/userdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/settings/usermanager/userdialog.cpp b/noncore/settings/usermanager/userdialog.cpp index 892fc8a..f31775d 100644 --- a/noncore/settings/usermanager/userdialog.cpp +++ b/noncore/settings/usermanager/userdialog.cpp | |||
@@ -56,25 +56,25 @@ UserDialog::~UserDialog() { | |||
56 | * | 56 | * |
57 | */ | 57 | */ |
58 | void UserDialog::setupTab1() { | 58 | void UserDialog::setupTab1() { |
59 | QPixmap mypixmap; | 59 | QPixmap mypixmap; |
60 | QWidget *tabpage = new QWidget(myTabWidget,"page1"); | 60 | QWidget *tabpage = new QWidget(myTabWidget,"page1"); |
61 | QVBoxLayout *layout = new QVBoxLayout(tabpage); | 61 | QVBoxLayout *layout = new QVBoxLayout(tabpage); |
62 | layout->setMargin(5); | 62 | layout->setMargin(5); |
63 | 63 | ||
64 | // Picture | 64 | // Picture |
65 | picturePushButton = new QPushButton(tabpage,"Label"); | 65 | picturePushButton = new QPushButton(tabpage,"Label"); |
66 | picturePushButton->setMinimumSize(48,48); | 66 | picturePushButton->setMinimumSize(48,48); |
67 | picturePushButton->setMaximumSize(48,48); | 67 | picturePushButton->setMaximumSize(48,48); |
68 | picturePushButton->setPixmap(Resource::loadPixmap("userconfig/usericon"));// Load default usericon. | 68 | picturePushButton->setPixmap(Resource::loadPixmap("usermanager/usericon"));// Load default usericon. |
69 | connect(picturePushButton,SIGNAL(clicked()),this,SLOT(clickedPicture()));// Clicking the picture should invoke pictureselector. | 69 | connect(picturePushButton,SIGNAL(clicked()),this,SLOT(clickedPicture()));// Clicking the picture should invoke pictureselector. |
70 | 70 | ||
71 | // Login | 71 | // Login |
72 | QLabel *loginLabel=new QLabel(tabpage,"Login: "); | 72 | QLabel *loginLabel=new QLabel(tabpage,"Login: "); |
73 | loginLabel->setText("Login: "); | 73 | loginLabel->setText("Login: "); |
74 | loginLineEdit=new QLineEdit(tabpage,"Login: "); | 74 | loginLineEdit=new QLineEdit(tabpage,"Login: "); |
75 | 75 | ||
76 | // UID | 76 | // UID |
77 | QLabel *uidLabel=new QLabel(tabpage,"uid: "); | 77 | QLabel *uidLabel=new QLabel(tabpage,"uid: "); |
78 | uidLabel->setText("UserID: "); | 78 | uidLabel->setText("UserID: "); |
79 | uidLineEdit=new QLineEdit(tabpage,"uid: "); | 79 | uidLineEdit=new QLineEdit(tabpage,"uid: "); |
80 | uidLineEdit->setEnabled(false); | 80 | uidLineEdit->setEnabled(false); |