mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-14 08:38:45 +00:00
Remove unused class ivars
This commit is contained in:
@@ -39,13 +39,13 @@ bool VideoSyncFile::isVideoSync(QString name)
|
||||
}
|
||||
return false;
|
||||
}
|
||||
VideoSyncFile::VideoSyncFile(QString filename, int &mode, Context *context) :
|
||||
filename(filename), context(context), mode(mode)
|
||||
VideoSyncFile::VideoSyncFile(QString filename, int& /*mode*/, Context *context) :
|
||||
filename(filename), context(context)
|
||||
{
|
||||
reload();
|
||||
}
|
||||
|
||||
VideoSyncFile::VideoSyncFile(Context *context) : context(context), mode(nomode)
|
||||
VideoSyncFile::VideoSyncFile(Context *context) : context(context)
|
||||
{
|
||||
filename ="";
|
||||
}
|
||||
|
||||
@@ -100,10 +100,6 @@ class VideoSyncFile
|
||||
// Metrics for this workout
|
||||
|
||||
Context *context;
|
||||
|
||||
private:
|
||||
int &mode;
|
||||
int nomode;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
@@ -213,9 +213,6 @@ class WWBlockSelection : public WorkoutWidgetItem {
|
||||
|
||||
// locate me on the parent widget in paint coordinates
|
||||
QRectF bounding();
|
||||
|
||||
private:
|
||||
Context *context;
|
||||
};
|
||||
|
||||
// draws the W'bal curve
|
||||
|
||||
Reference in New Issue
Block a user