Forgot to remove debugging disply

This commit is contained in:
Grégory Soutadé 2010-12-20 20:17:46 +01:00
parent 6dead9f19d
commit 6317511fd8
3 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,8 @@
v0.2_dev (12/12/10)
v0.2_dev (20/12/10)
** User **
Better use of sizers (so better interface!)
** Dev **
Use a factory to create panels (prepare for plug-in)

1
TODO
View File

@ -3,7 +3,6 @@ Version 0.2
Statistics (need to add months/years label on graph)
Auto completion (already up into wxwidgets 2.9)
Using tabulation to navigate throw interface (Search Panel)
Improve Scrolled Windows and widgets placement
Can type a letter with a comboboxes
Windows version
Need packaging (.deb)

View File

@ -174,7 +174,6 @@ void wxUI::LoadPanels()
Disconnect(i, wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(wxUI::OnButtonClicked), _panels[i], this);
_panels[i] = temp;
Connect(i, wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(wxUI::OnButtonClicked), temp, this);
std::cout << temp->GetToolTip().mb_str() << "\n";
_buttons[i]->SetToolTip(temp->GetToolTip());
}
}