about summary refs log tree commit diff stats
path: root/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp index 4fbbe72..fe9aceb 100644 --- a/main.cpp +++ b/main.cpp
@@ -4,11 +4,14 @@
4#include <wx/wx.h> 4#include <wx/wx.h>
5#endif 5#endif
6 6
7#include "tracker_config.h"
7#include "tracker_frame.h" 8#include "tracker_frame.h"
8 9
9class TrackerApp : public wxApp { 10class TrackerApp : public wxApp {
10 public: 11 public:
11 virtual bool OnInit() { 12 virtual bool OnInit() {
13 GetTrackerConfig().Load();
14
12 TrackerFrame *frame = new TrackerFrame(); 15 TrackerFrame *frame = new TrackerFrame();
13 frame->Show(true); 16 frame->Show(true);
14 return true; 17 return true;