Skip to content

Commit

Permalink
Fixed warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Niclas Raabe committed May 23, 2014
1 parent f18464c commit 7bf3554
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/ui/game/gamelengthwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ void GameLengthWidget::update()

void GameLengthWidget::mouseReleaseEvent(QMouseEvent *event)
{
Q_UNUSED(event)

if(m_context == Duration) {
m_context = TotalTime;
}
Expand Down
2 changes: 2 additions & 0 deletions src/ui/model/gameinformationmodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,8 @@ void GameInformationModel::setHeaderAction(int section, QAction *action)

void GameInformationModel::removeHeaderAction(int section, QAction *action)
{
Q_UNUSED(action)

m_actions.remove(section);
}

Expand Down

0 comments on commit 7bf3554

Please sign in to comment.