@@ -56,7 +56,8 @@ void openCloneDialog(CloneDialog::Kind kind) {
56
56
QObject::connect (dialog, &CloneDialog::accepted, [dialog] {
57
57
if (MainWindow *window = MainWindow::open (dialog->path ())) {
58
58
RepoView *view = window->currentView ();
59
- view->addLogEntry (dialog->message (), dialog->messageTitle ());
59
+ if (view)
60
+ view->addLogEntry (dialog->message (), dialog->messageTitle ());
60
61
}
61
62
});
62
63
@@ -322,8 +323,9 @@ MenuBar::MenuBar(QWidget *parent) : QMenuBar(parent) {
322
323
return ;
323
324
324
325
if (MainWindow *win = qobject_cast<MainWindow *>(window)) {
325
- if (win->count () > 0 ) {
326
- win->currentView ()->close ();
326
+ if (win->count () > 1 ) {
327
+ if (auto c = win->currentView ())
328
+ c->close ();
327
329
return ;
328
330
}
329
331
}
@@ -439,7 +441,8 @@ MenuBar::MenuBar(QWidget *parent) : QMenuBar(parent) {
439
441
connect (mFind , &QAction::triggered, [] {
440
442
QWidget *widget = QApplication::activeWindow ();
441
443
if (MainWindow *window = qobject_cast<MainWindow *>(widget)) {
442
- window->currentView ()->find ();
444
+ if (auto c = window->currentView ())
445
+ c->find ();
443
446
} else if (EditorWindow *window = qobject_cast<EditorWindow *>(widget)) {
444
447
window->widget ()->find ();
445
448
}
@@ -450,7 +453,8 @@ MenuBar::MenuBar(QWidget *parent) : QMenuBar(parent) {
450
453
connect (mFindNext , &QAction::triggered, [] {
451
454
QWidget *widget = QApplication::activeWindow ();
452
455
if (MainWindow *window = qobject_cast<MainWindow *>(widget)) {
453
- window->currentView ()->findNext ();
456
+ if (auto c = window->currentView ())
457
+ c->findNext ();
454
458
} else if (EditorWindow *window = qobject_cast<EditorWindow *>(widget)) {
455
459
window->widget ()->findNext ();
456
460
}
@@ -461,7 +465,8 @@ MenuBar::MenuBar(QWidget *parent) : QMenuBar(parent) {
461
465
connect (mFindPrevious , &QAction::triggered, [] {
462
466
QWidget *widget = QApplication::activeWindow ();
463
467
if (MainWindow *window = qobject_cast<MainWindow *>(widget)) {
464
- window->currentView ()->findPrevious ();
468
+ if (auto c = window->currentView ())
469
+ c->findPrevious ();
465
470
} else if (EditorWindow *window = qobject_cast<EditorWindow *>(widget)) {
466
471
window->widget ()->findPrevious ();
467
472
}
@@ -753,10 +758,12 @@ MenuBar::MenuBar(QWidget *parent) : QMenuBar(parent) {
753
758
return ;
754
759
755
760
RepoView *view = win->currentView ();
756
- foreach (const git::Submodule &submodule, view->repo ().submodules ()) {
757
- QAction *action = mOpenSubmodule ->addAction (submodule.name ());
758
- connect (action, &QAction::triggered,
759
- [view, submodule] { view->openSubmodule (submodule); });
761
+ if (view) {
762
+ foreach (const git::Submodule &submodule, view->repo ().submodules ()) {
763
+ QAction *action = mOpenSubmodule ->addAction (submodule.name ());
764
+ connect (action, &QAction::triggered,
765
+ [view, submodule] { view->openSubmodule (submodule); });
766
+ }
760
767
}
761
768
});
762
769
@@ -893,23 +900,26 @@ MenuBar::MenuBar(QWidget *parent) : QMenuBar(parent) {
893
900
QAction *diffs = debug->addAction (tr (" Load All Diffs" ));
894
901
connect (diffs, &QAction::triggered, [this ] {
895
902
if (MainWindow *win = qobject_cast<MainWindow *>(window ())) {
896
- RepoView *view = win->currentView ();
897
- CommitList *commits = view->commitList ();
898
- QAbstractItemModel *model = commits->model ();
899
- for (int i = 0 ; i < model->rowCount (); ++i) {
900
- commits->setCurrentIndex (model->index (i, 0 ));
901
- view->find (); // Force editors to load.
902
- QCoreApplication::processEvents ();
903
+ if (RepoView *view = win->currentView ()) {
904
+ CommitList *commits = view->commitList ();
905
+ QAbstractItemModel *model = commits->model ();
906
+ for (int i = 0 ; i < model->rowCount (); ++i) {
907
+ commits->setCurrentIndex (model->index (i, 0 ));
908
+ view->find (); // Force editors to load.
909
+ QCoreApplication::processEvents ();
910
+ }
903
911
}
904
912
}
905
913
});
906
914
907
915
QAction *walk = debug->addAction (tr (" Walk Commits" ));
908
916
connect (walk, &QAction::triggered, [this ] {
909
917
if (MainWindow *win = qobject_cast<MainWindow *>(window ())) {
910
- git::RevWalk walker = win->currentView ()->repo ().walker ();
911
- while (git::Commit commit = walker.next ())
912
- (void )commit;
918
+ if (auto c = win->currentView ()) {
919
+ git::RevWalk walker = c->repo ().walker ();
920
+ while (git::Commit commit = walker.next ())
921
+ (void )commit;
922
+ }
913
923
}
914
924
});
915
925
}
@@ -1132,8 +1142,9 @@ void MenuBar::updateHistory() {
1132
1142
1133
1143
void MenuBar::updateWindow () {
1134
1144
MainWindow *win = qobject_cast<MainWindow *>(window ());
1135
- mPrevTab ->setEnabled (win && win->count () > 1 );
1136
- mNextTab ->setEnabled (win && win->count () > 1 );
1145
+ // First tab is the welcome tab
1146
+ mPrevTab ->setEnabled (win && win->count () > 2 );
1147
+ mNextTab ->setEnabled (win && win->count () > 2 );
1137
1148
}
1138
1149
1139
1150
QWidget *MenuBar::window () const {
@@ -1150,7 +1161,10 @@ QList<RepoView *> MenuBar::views() const {
1150
1161
1151
1162
QList<RepoView *> repos;
1152
1163
for (int i = 0 ; i < win->count (); i++) {
1153
- repos.append (win->view (i));
1164
+ auto * view = win->view (i);
1165
+ if (view) {
1166
+ repos.append (view);
1167
+ }
1154
1168
}
1155
1169
return repos;
1156
1170
}
0 commit comments