Changeset 206
- Timestamp:
- 15/08/09 17:16:35 (4 years ago)
- Location:
- trunk/src
- Files:
-
- 2 added
- 4 edited
-
Makefile.am (modified) (2 diffs)
-
simple_pie_plot.cpp (added)
-
simple_pie_plot.h (added)
-
statistics.cpp (modified) (1 diff)
-
statistics_dialog.cpp (modified) (1 diff)
-
statistics_dialog.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/Makefile.am
r202 r206 16 16 ScoreDice.cpp \ 17 17 simple_histogram.cpp \ 18 simple_pie_plot.cpp \ 18 19 statistics.cpp \ 19 20 statistics_dialog.cpp \ … … 36 37 ScoreDice.h \ 37 38 simple_histogram.h \ 39 simple_pie_plot.h \ 38 40 statistics.h \ 39 41 statistics_dialog.h \ -
trunk/src/statistics.cpp
r205 r206 37 37 try { 38 38 load_data(); 39 } catch ( exception &e) {39 } catch (std::exception &e) { 40 40 reset(); 41 41 } -
trunk/src/statistics_dialog.cpp
r202 r206 46 46 games_started = new wxStaticText(this, wxID_ANY, wxT("")); 47 47 games_finished = new wxStaticText(this, wxID_ANY, wxT("")); 48 histogram = new SimpleHistogram(this, wxID_ANY);48 histogram = new simple_pie_plot::SimplePiePlot(this, wxID_ANY); 49 49 statistics_reset_date = new wxStaticText(this, wxID_ANY, wxT("")); 50 50 } -
trunk/src/statistics_dialog.h
r202 r206 22 22 23 23 #include "statistics.h" 24 #include "simple_ histogram.h"24 #include "simple_pie_plot.h" 25 25 #include <wx/wx.h> 26 26 #include <wx/dialog.h> … … 47 47 wxStaticText *games_finished; 48 48 wxStaticText *statistics_reset_date; 49 SimpleHistogram* histogram;49 simple_pie_plot::SimplePiePlot* histogram; 50 50 51 51 statistics::Statistics* m_stats;
Note: See TracChangeset
for help on using the changeset viewer.
