diff --git a/SleepyHead.depend b/SleepyHead.depend index ce7f6101..dbbd431b 100644 --- a/SleepyHead.depend +++ b/SleepyHead.depend @@ -7815,7 +7815,7 @@ -1306807901 source:/home/mark/projects/git/sleepyhead/SleepyHeadApp.cpp +1306810322 source:/home/mark/projects/git/sleepyhead/SleepyHeadApp.cpp "wx_pch.h" @@ -7875,7 +7875,7 @@ -1306808014 /home/mark/projects/git/sleepyhead/version.h +1306811240 /home/mark/projects/git/sleepyhead/version.h 1306724655 /home/mark/projects/git/sleepyhead/libs/sleeplib/prs1_loader.h "machine.h" @@ -7892,7 +7892,7 @@ "preferences.h" "tinyxml/tinyxml.h" -1306807855 source:/home/mark/projects/git/sleepyhead/SleepyHeadMain.cpp +1306811240 source:/home/mark/projects/git/sleepyhead/SleepyHeadMain.cpp "wx_pch.h" "version.h" @@ -7910,7 +7910,7 @@ "sleeplib/profiles.h" "sleeplib/machine_loader.h" -1306807718 source:/home/mark/projects/git/sleepyhead/graphs/graph.cpp +1306810919 source:/home/mark/projects/git/sleepyhead/graphs/graph.cpp diff --git a/SleepyHeadApp.cpp b/SleepyHeadApp.cpp index 1d16dde7..30ff1f40 100644 --- a/SleepyHeadApp.cpp +++ b/SleepyHeadApp.cpp @@ -67,7 +67,7 @@ bool SleepyHeadApp::OnInit() int SleepyHeadApp::OnExit() { //delete loader_progress; - wxLogMessage("Closing Profiles..."); + wxLogMessage(wxT("Closing Profiles...")); Profiles::Done(); return true; diff --git a/SleepyHeadMain.cpp b/SleepyHeadMain.cpp index e8e0c3df..b599caea 100644 --- a/SleepyHeadMain.cpp +++ b/SleepyHeadMain.cpp @@ -799,6 +799,10 @@ void Daily::UpdateGraphs(Day *day) //if (!day) return; for (auto g=Data.begin();g!=Data.end();g++) { + if (day==NULL) { + (*g)->SetMinX(0); + (*g)->SetMaxX(0); + } (*g)->Update(day); } }; diff --git a/graphs/graph.cpp b/graphs/graph.cpp index dea7853e..948bf8a3 100644 --- a/graphs/graph.cpp +++ b/graphs/graph.cpp @@ -668,6 +668,7 @@ void gXAxis::Plot(wxDC & dc, gGraphWindow & w) double xx=w.max_x-w.min_x; + if (xx==0) return; //wxDateTime d; wxString fd; if (xx<1.5) { diff --git a/version.h b/version.h index ae91fd09..489395b5 100644 --- a/version.h +++ b/version.h @@ -16,14 +16,14 @@ namespace AutoVersion{ //Standard Version Type static const long MAJOR = 0; static const long MINOR = 7; - static const long BUILD = 2435; - static const long REVISION = 7996; + static const long BUILD = 2441; + static const long REVISION = 8013; //Miscellaneous Version Types - static const long BUILDS_COUNT = 7416; - #define RC_FILEVERSION 0,7,2435,7996 - #define RC_FILEVERSION_STRING "0, 7, 2435, 7996\0" - static const char FULLVERSION_STRING[] = "0.7.2435.7996"; + static const long BUILDS_COUNT = 7433; + #define RC_FILEVERSION 0,7,2441,8013 + #define RC_FILEVERSION_STRING "0, 7, 2441, 8013\0" + static const char FULLVERSION_STRING[] = "0.7.2441.8013"; //These values are to keep track of your versioning state, don't modify them. static const long BUILD_HISTORY = 62;