removed olive:: qualifier from MainWindow class

This commit is contained in:
itsmattkc
2019-12-26 17:41:31 +11:00
parent 7d907d7ee1
commit 83077c939e
4 changed files with 9 additions and 13 deletions
+2 -2
View File
@@ -126,7 +126,7 @@ void Core::Stop()
delete main_window_;
}
olive::MainWindow *Core::main_window()
MainWindow *Core::main_window()
{
return main_window_;
}
@@ -366,7 +366,7 @@ void Core::StartGUI(bool full_screen)
SLOT(FocusChanged(QWidget*, QWidget*)));
// Create main window and open it
main_window_ = new olive::MainWindow();
main_window_ = new MainWindow();
if (full_screen) {
main_window_->showFullScreen();
} else {