DolphinQt: Indentation fixes.

This commit is contained in:
waddlesplash 2015-09-12 13:20:16 -04:00
parent 831d8ef13f
commit db8b50cf7e
1 changed files with 2 additions and 3 deletions

View File

@ -185,7 +185,7 @@ QString DMainWindow::RequestBootFilename()
{ {
// If a game is already selected, just return the filename // If a game is already selected, just return the filename
if (m_game_tracker->SelectedGame() != nullptr) if (m_game_tracker->SelectedGame() != nullptr)
return m_game_tracker->SelectedGame()->GetFileName(); return m_game_tracker->SelectedGame()->GetFileName();
return ShowFileDialog(); return ShowFileDialog();
} }
@ -200,8 +200,7 @@ QString DMainWindow::ShowFileDialog()
QString DMainWindow::ShowFolderDialog() QString DMainWindow::ShowFolderDialog()
{ {
return QFileDialog::getExistingDirectory(this, tr("Browse for a directory to add"), return QFileDialog::getExistingDirectory(this, tr("Browse for a directory to add"),
QDir::homePath(), QDir::homePath(), QFileDialog::ShowDirsOnly);
QFileDialog::ShowDirsOnly);
} }
void DMainWindow::DoStartPause() void DMainWindow::DoStartPause()