From 4393f6cece612e39ca24ac56f3c96d32b8d72424 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sat, 19 Jan 2013 06:18:25 +1000 Subject: [PATCH] Did some valgrind checks and cleaned up a few leaks --- Graphs/gGraphView.cpp | 33 ++++++++++++++++++++++++++++++--- SleepLib/profiles.cpp | 1 + SleepLib/session.cpp | 1 + profileselect.cpp | 6 +++++- 4 files changed, 37 insertions(+), 4 deletions(-) diff --git a/Graphs/gGraphView.cpp b/Graphs/gGraphView.cpp index b979728d..1041cc8f 100644 --- a/Graphs/gGraphView.cpp +++ b/Graphs/gGraphView.cpp @@ -896,6 +896,10 @@ Layer::~Layer() for (int i=0;iaddGraph(this,group); timer=new QTimer(graphview); @@ -1132,9 +1147,7 @@ gGraph::gGraph(gGraphView *graphview,QString title,QString units, int height,sho m_quad=new gVertexBuffer(64,GL_QUADS); m_quad->forceAntiAlias(true); - f_miny=f_maxy=0; m_enforceMinY=m_enforceMaxY=false; - rec_miny=rec_maxy=0; m_showTitle=true; m_printing=false; } @@ -2023,6 +2036,8 @@ QPixmap gGraph::renderPixmap(int w, int h, bool printing) //sg->makeCurrent(); #ifndef Q_OS_MAC + // This doesn't work on Rich's Radeon boxen either + // I'm suspiscious of this function on Radeon hardware. pm=sg->renderPixmap(w,h,false); #endif if (pm.isNull()) { @@ -2155,6 +2170,11 @@ gGraphView::gGraphView(QWidget *parent, gGraphView * shared) : m_lastypos=m_lastxpos=0; m_horiz_travel=0; pixmap_cache_size=0; + m_minx=m_maxx=0; + m_day=NULL; + m_selected_graph=NULL; + cubetex=0; + this->setMouseTracking(true); m_emptytext=QObject::tr("No Data"); InitGraphs(); @@ -2201,6 +2221,8 @@ gGraphView::gGraphView(QWidget *parent, gGraphView * shared) : m_fadingIn=false; m_inAnimation=false; m_limbo=false; + m_fadedir=false; + m_blockUpdates=false; use_pixmap_cache=true; } @@ -2215,6 +2237,11 @@ gGraphView::~gGraphView() for (int i=0;i::iterator it; + for (it=pixmap_cache.begin();it!=pixmap_cache.end();it++) + delete (*it); + pixmap_cache.clear(); + delete m_tooltip; m_graphs.clear(); //delete vlines; @@ -2622,7 +2649,7 @@ void gGraphView::SetXBounds(qint64 minx, qint64 maxx,short group,bool refresh) int m=(xx/60000) % 60; int s=(xx/1000) % 60; int ms(xx % 1000); - QString str; + QString str=""; if (d>1) { str.sprintf("%1.0f days",ceil(xx/86400000.0)); diff --git a/SleepLib/profiles.cpp b/SleepLib/profiles.cpp index d3a81435..7df67b61 100644 --- a/SleepLib/profiles.cpp +++ b/SleepLib/profiles.cpp @@ -433,6 +433,7 @@ void Done() profiles.clear(); delete p_pref; delete p_layout; + DestroyLoaders(); } Profile *Get(QString name) diff --git a/SleepLib/session.cpp b/SleepLib/session.cpp index 233b6e5e..7702f67f 100644 --- a/SleepLib/session.cpp +++ b/SleepLib/session.cpp @@ -29,6 +29,7 @@ const quint16 events_version=10; Session::Session(Machine * m,SessionID session) { + s_lonesession=false; if (!session) { session=m->CreateSessionID(); } diff --git a/profileselect.cpp b/profileselect.cpp index 037a4f90..ffd0369d 100644 --- a/profileselect.cpp +++ b/profileselect.cpp @@ -30,9 +30,12 @@ ProfileSelect::ProfileSelect(QWidget *parent) : int i=0; int sel=-1; QString name; + + QIcon icon(":/icons/moon.png"); for (QHash::iterator p=Profiles::profiles.begin();p!=Profiles::profiles.end();p++) { name=p.key(); - QStandardItem *item=new QStandardItem(*new QIcon(":/icons/moon.png"),name); + + QStandardItem *item=new QStandardItem(icon,name); if (PREF.contains(STR_GEN_Profile) && (name==PREF[STR_GEN_Profile].toString())) { sel=i; } @@ -66,6 +69,7 @@ ProfileSelect::ProfileSelect(QWidget *parent) : ProfileSelect::~ProfileSelect() { + delete model; // why is this not being cleaned up by Qt? delete popupMenu; delete ui; }