mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
profilewidget2.cpp: remove unused variables
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
This commit is contained in:
parent
73ddd57cf0
commit
e2550de5e6
1 changed files with 1 additions and 2 deletions
|
@ -1291,7 +1291,7 @@ void ProfileWidget2::contextMenuEvent(QContextMenuEvent *event)
|
||||||
action->setData(event->globalPos());
|
action->setData(event->globalPos());
|
||||||
|
|
||||||
if (same_string(current_dc->model, "manually added dive"))
|
if (same_string(current_dc->model, "manually added dive"))
|
||||||
QAction *editProfileAction = m.addAction(tr("Edit the profile"), this, SIGNAL(editCurrentDive()));
|
m.addAction(tr("Edit the profile"), this, SIGNAL(editCurrentDive()));
|
||||||
|
|
||||||
if (DiveEventItem *item = dynamic_cast<DiveEventItem *>(sceneItem)) {
|
if (DiveEventItem *item = dynamic_cast<DiveEventItem *>(sceneItem)) {
|
||||||
action = new QAction(&m);
|
action = new QAction(&m);
|
||||||
|
@ -1621,7 +1621,6 @@ void ProfileWidget2::repositionDiveHandlers()
|
||||||
{
|
{
|
||||||
DivePlannerPointsModel *plannerModel = DivePlannerPointsModel::instance();
|
DivePlannerPointsModel *plannerModel = DivePlannerPointsModel::instance();
|
||||||
// Re-position the user generated dive handlers
|
// Re-position the user generated dive handlers
|
||||||
struct gasmix mix, lastmix;
|
|
||||||
for (int i = 0; i < plannerModel->rowCount(); i++) {
|
for (int i = 0; i < plannerModel->rowCount(); i++) {
|
||||||
struct divedatapoint datapoint = plannerModel->at(i);
|
struct divedatapoint datapoint = plannerModel->at(i);
|
||||||
if (datapoint.time == 0) // those are the magic entries for tanks
|
if (datapoint.time == 0) // those are the magic entries for tanks
|
||||||
|
|
Loading…
Reference in a new issue