mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Silence warnings in profilewidget2.cpp
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
2d9c9c6a1c
commit
4156bc3651
1 changed files with 5 additions and 2 deletions
|
@ -1302,7 +1302,7 @@ struct plot_data *ProfileWidget2::getEntryFromPos(QPointF pos)
|
|||
|
||||
for (int i = 0; i < plotInfo.nr; i++) {
|
||||
entry = plotInfo.entry + i;
|
||||
if (entry->sec >= seconds)
|
||||
if ((int)entry->sec >= seconds)
|
||||
break;
|
||||
}
|
||||
return entry;
|
||||
|
@ -1358,7 +1358,7 @@ void ProfileWidget2::contextMenuEvent(QContextMenuEvent *event)
|
|||
if (rowCount > 1) {
|
||||
// if we have more than one gas, offer to switch to another one
|
||||
QMenu *gasChange = m.addMenu(tr("Add gas change"));
|
||||
for (int i = 0; i < rowCount; i++) {
|
||||
for (unsigned int i = 0; i < (unsigned int)rowCount; i++) {
|
||||
QAction *action = new QAction(&m);
|
||||
action->setText(model->data(model->index(i, 0), Qt::DisplayRole).toString() + QString(tr(" (Tank %1)")).arg(i + 1));
|
||||
connect(action, SIGNAL(triggered(bool)), this, SLOT(changeGas()));
|
||||
|
@ -1674,6 +1674,9 @@ void ProfileWidget2::disconnectTemporaryConnections()
|
|||
#ifndef SUBSURFACE_MOBILE
|
||||
void ProfileWidget2::pointInserted(const QModelIndex &parent, int start, int end)
|
||||
{
|
||||
Q_UNUSED(parent)
|
||||
Q_UNUSED(start)
|
||||
Q_UNUSED(end)
|
||||
DiveHandler *item = new DiveHandler();
|
||||
scene()->addItem(item);
|
||||
handles << item;
|
||||
|
|
Loading…
Add table
Reference in a new issue