Stopped Xaxes from drawing when no data

This commit is contained in:
Mark Watkins 2011-05-31 13:09:03 +10:00
parent 5d8675df24
commit 40b00a3d14
5 changed files with 16 additions and 11 deletions

View File

@ -7815,7 +7815,7 @@
<wx/datectrl.h>
<wx/dateevt.h>
1306807901 source:/home/mark/projects/git/sleepyhead/SleepyHeadApp.cpp
1306810322 source:/home/mark/projects/git/sleepyhead/SleepyHeadApp.cpp
"wx_pch.h"
<iostream>
<wx/log.h>
@ -7875,7 +7875,7 @@
<sleeplib/machine.h>
<list>
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"
<wx/app.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
<wx/settings.h>
<wx/dcbuffer.h>
<wx/log.h>

View File

@ -67,7 +67,7 @@ bool SleepyHeadApp::OnInit()
int SleepyHeadApp::OnExit()
{
//delete loader_progress;
wxLogMessage("Closing Profiles...");
wxLogMessage(wxT("Closing Profiles..."));
Profiles::Done();
return true;

View File

@ -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);
}
};

View File

@ -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) {

View File

@ -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;