Add lib directory check in Makefile

This commit is contained in:
2010-12-11 09:51:44 +01:00
parent 9355c42093
commit 59d770c928
8 changed files with 53 additions and 67 deletions

View File

@@ -33,6 +33,7 @@ UsersDialog::UsersDialog(KissCount* kiss, wxUI *parent) : wxDialog(&(*parent), -
wxStaticText* label;
wxCommandEvent event;
wxBoxSizer *hbox = new wxBoxSizer(wxHORIZONTAL);
gridBagSizer = new wxGridBagSizer(4, 4);
label = new wxStaticText(this, -1, _("User "));
@@ -63,10 +64,11 @@ UsersDialog::UsersDialog(KissCount* kiss, wxUI *parent) : wxDialog(&(*parent), -
_users->Select(0);
SetSizer(gridBagSizer);
hbox->Add(gridBagSizer, 0, wxGROW|wxALL, 10);
SetSizer(hbox);
_users->SetFocus();
Layout();
Fit();
Center();
if (users_list.size() == 0)