Skip to content

Commit

Permalink
Remove last remnants of 'Limited Session'
Browse files Browse the repository at this point in the history
  • Loading branch information
zonkmachine committed Jul 23, 2017
1 parent 98afbcb commit cfc39ac
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 19 deletions.
2 changes: 0 additions & 2 deletions include/MainWindow.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,6 @@ class MainWindow : public QMainWindow
return m_autoSaveTimer.interval();
}

void runAutoSave();

enum SessionState
{
Normal,
Expand Down
1 change: 0 additions & 1 deletion src/core/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -919,7 +919,6 @@ int main( int argc, char * * argv )
if( autoSaveEnabled )
{
gui->mainWindow()->autoSaveTimerReset();
gui->mainWindow()->autoSave();
}
}

Expand Down
16 changes: 0 additions & 16 deletions src/gui/MainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -821,7 +821,6 @@ void MainWindow::createNewProject()
{
Engine::getSong()->createNewProject();
}
runAutoSave();
}


Expand All @@ -840,7 +839,6 @@ void MainWindow::createNewProjectFromTemplate( QAction * _idx )
Engine::getSong()->createNewProjectFromTemplate(
dirBase + _idx->text() + ".mpt" );
}
runAutoSave();
}


Expand All @@ -865,7 +863,6 @@ void MainWindow::openProject()
setCursor( Qt::ArrowCursor );
}
}
runAutoSave();
}


Expand Down Expand Up @@ -917,7 +914,6 @@ void MainWindow::openRecentlyOpenedProject( QAction * _action )
Engine::getSong()->loadProject( f );
setCursor( Qt::ArrowCursor );
}
runAutoSave();
}


Expand Down Expand Up @@ -1557,15 +1553,3 @@ void MainWindow::autoSave()
}
}
}


// For the occasional auto save action that isn't run
// from the timer where we need to do extra tests.
void MainWindow::runAutoSave()
{
if( ConfigManager::inst()->value( "ui", "enableautosave" ).toInt() )
{
autoSave();
autoSaveTimerReset(); // Reset timer
}
}

0 comments on commit cfc39ac

Please sign in to comment.