From 6317511fd8abeeb3e1a6e961a319b9b5087bc1b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Soutad=C3=A9?= Date: Mon, 20 Dec 2010 20:17:46 +0100 Subject: [PATCH] Forgot to remove debugging disply --- ChangeLog | 7 ++++++- TODO | 1 - src/view/wxUI.cpp | 1 - 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2b00522..5879e5a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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) diff --git a/TODO b/TODO index eb78945..25bf88d 100644 --- a/TODO +++ b/TODO @@ -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) diff --git a/src/view/wxUI.cpp b/src/view/wxUI.cpp index c2a5f76..142827e 100644 --- a/src/view/wxUI.cpp +++ b/src/view/wxUI.cpp @@ -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()); } }