mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Did some valgrind checks and cleaned up a few leaks
This commit is contained in:
parent
e1ec82b0ad
commit
4393f6cece
@ -896,6 +896,10 @@ Layer::~Layer()
|
|||||||
for (int i=0;i<mgl_buffers.size();i++) {
|
for (int i=0;i<mgl_buffers.size();i++) {
|
||||||
delete mgl_buffers[i];
|
delete mgl_buffers[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for (int i=0;i<mv_buffers.size();i++) {
|
||||||
|
delete mv_buffers[i];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
void Layer::drawGLBuf(float linesize)
|
void Layer::drawGLBuf(float linesize)
|
||||||
{
|
{
|
||||||
@ -961,6 +965,8 @@ LayerGroup::LayerGroup() :
|
|||||||
}
|
}
|
||||||
LayerGroup::~LayerGroup()
|
LayerGroup::~LayerGroup()
|
||||||
{
|
{
|
||||||
|
for (int i=0;i<layers.size();i++)
|
||||||
|
delete layers[i];
|
||||||
}
|
}
|
||||||
bool LayerGroup::isEmpty()
|
bool LayerGroup::isEmpty()
|
||||||
{
|
{
|
||||||
@ -1111,8 +1117,17 @@ gGraph::gGraph(gGraphView *graphview,QString title,QString units, int height,sho
|
|||||||
m_visible(true)
|
m_visible(true)
|
||||||
{
|
{
|
||||||
m_min_height=60;
|
m_min_height=60;
|
||||||
|
m_width=0;
|
||||||
|
|
||||||
m_layers.clear();
|
m_layers.clear();
|
||||||
|
|
||||||
|
f_miny=f_maxy=0;
|
||||||
|
rmin_x=rmin_y=0;
|
||||||
|
rmax_x=rmax_y=0;
|
||||||
|
max_x=max_y=0;
|
||||||
|
min_x=min_y=0;
|
||||||
|
rec_miny=rec_maxy=0;
|
||||||
|
|
||||||
if (graphview) {
|
if (graphview) {
|
||||||
graphview->addGraph(this,group);
|
graphview->addGraph(this,group);
|
||||||
timer=new QTimer(graphview);
|
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=new gVertexBuffer(64,GL_QUADS);
|
||||||
m_quad->forceAntiAlias(true);
|
m_quad->forceAntiAlias(true);
|
||||||
f_miny=f_maxy=0;
|
|
||||||
m_enforceMinY=m_enforceMaxY=false;
|
m_enforceMinY=m_enforceMaxY=false;
|
||||||
rec_miny=rec_maxy=0;
|
|
||||||
m_showTitle=true;
|
m_showTitle=true;
|
||||||
m_printing=false;
|
m_printing=false;
|
||||||
}
|
}
|
||||||
@ -2023,6 +2036,8 @@ QPixmap gGraph::renderPixmap(int w, int h, bool printing)
|
|||||||
|
|
||||||
//sg->makeCurrent();
|
//sg->makeCurrent();
|
||||||
#ifndef Q_OS_MAC
|
#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);
|
pm=sg->renderPixmap(w,h,false);
|
||||||
#endif
|
#endif
|
||||||
if (pm.isNull()) {
|
if (pm.isNull()) {
|
||||||
@ -2155,6 +2170,11 @@ gGraphView::gGraphView(QWidget *parent, gGraphView * shared) :
|
|||||||
m_lastypos=m_lastxpos=0;
|
m_lastypos=m_lastxpos=0;
|
||||||
m_horiz_travel=0;
|
m_horiz_travel=0;
|
||||||
pixmap_cache_size=0;
|
pixmap_cache_size=0;
|
||||||
|
m_minx=m_maxx=0;
|
||||||
|
m_day=NULL;
|
||||||
|
m_selected_graph=NULL;
|
||||||
|
cubetex=0;
|
||||||
|
|
||||||
this->setMouseTracking(true);
|
this->setMouseTracking(true);
|
||||||
m_emptytext=QObject::tr("No Data");
|
m_emptytext=QObject::tr("No Data");
|
||||||
InitGraphs();
|
InitGraphs();
|
||||||
@ -2201,6 +2221,8 @@ gGraphView::gGraphView(QWidget *parent, gGraphView * shared) :
|
|||||||
m_fadingIn=false;
|
m_fadingIn=false;
|
||||||
m_inAnimation=false;
|
m_inAnimation=false;
|
||||||
m_limbo=false;
|
m_limbo=false;
|
||||||
|
m_fadedir=false;
|
||||||
|
m_blockUpdates=false;
|
||||||
use_pixmap_cache=true;
|
use_pixmap_cache=true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2215,6 +2237,11 @@ gGraphView::~gGraphView()
|
|||||||
for (int i=0;i<m_graphs.size();i++) {
|
for (int i=0;i<m_graphs.size();i++) {
|
||||||
delete m_graphs[i];
|
delete m_graphs[i];
|
||||||
}
|
}
|
||||||
|
QHash<QString,myPixmapCache *>::iterator it;
|
||||||
|
for (it=pixmap_cache.begin();it!=pixmap_cache.end();it++)
|
||||||
|
delete (*it);
|
||||||
|
pixmap_cache.clear();
|
||||||
|
|
||||||
delete m_tooltip;
|
delete m_tooltip;
|
||||||
m_graphs.clear();
|
m_graphs.clear();
|
||||||
//delete vlines;
|
//delete vlines;
|
||||||
@ -2622,7 +2649,7 @@ void gGraphView::SetXBounds(qint64 minx, qint64 maxx,short group,bool refresh)
|
|||||||
int m=(xx/60000) % 60;
|
int m=(xx/60000) % 60;
|
||||||
int s=(xx/1000) % 60;
|
int s=(xx/1000) % 60;
|
||||||
int ms(xx % 1000);
|
int ms(xx % 1000);
|
||||||
QString str;
|
QString str="";
|
||||||
|
|
||||||
if (d>1) {
|
if (d>1) {
|
||||||
str.sprintf("%1.0f days",ceil(xx/86400000.0));
|
str.sprintf("%1.0f days",ceil(xx/86400000.0));
|
||||||
|
@ -433,6 +433,7 @@ void Done()
|
|||||||
profiles.clear();
|
profiles.clear();
|
||||||
delete p_pref;
|
delete p_pref;
|
||||||
delete p_layout;
|
delete p_layout;
|
||||||
|
DestroyLoaders();
|
||||||
}
|
}
|
||||||
|
|
||||||
Profile *Get(QString name)
|
Profile *Get(QString name)
|
||||||
|
@ -29,6 +29,7 @@ const quint16 events_version=10;
|
|||||||
|
|
||||||
Session::Session(Machine * m,SessionID session)
|
Session::Session(Machine * m,SessionID session)
|
||||||
{
|
{
|
||||||
|
s_lonesession=false;
|
||||||
if (!session) {
|
if (!session) {
|
||||||
session=m->CreateSessionID();
|
session=m->CreateSessionID();
|
||||||
}
|
}
|
||||||
|
@ -30,9 +30,12 @@ ProfileSelect::ProfileSelect(QWidget *parent) :
|
|||||||
int i=0;
|
int i=0;
|
||||||
int sel=-1;
|
int sel=-1;
|
||||||
QString name;
|
QString name;
|
||||||
|
|
||||||
|
QIcon icon(":/icons/moon.png");
|
||||||
for (QHash<QString,Profile *>::iterator p=Profiles::profiles.begin();p!=Profiles::profiles.end();p++) {
|
for (QHash<QString,Profile *>::iterator p=Profiles::profiles.begin();p!=Profiles::profiles.end();p++) {
|
||||||
name=p.key();
|
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())) {
|
if (PREF.contains(STR_GEN_Profile) && (name==PREF[STR_GEN_Profile].toString())) {
|
||||||
sel=i;
|
sel=i;
|
||||||
}
|
}
|
||||||
@ -66,6 +69,7 @@ ProfileSelect::ProfileSelect(QWidget *parent) :
|
|||||||
|
|
||||||
ProfileSelect::~ProfileSelect()
|
ProfileSelect::~ProfileSelect()
|
||||||
{
|
{
|
||||||
|
delete model; // why is this not being cleaned up by Qt?
|
||||||
delete popupMenu;
|
delete popupMenu;
|
||||||
delete ui;
|
delete ui;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user