diff options
| author | Aqua-sama <aqua@iserlohn-fortress.net> | 2020-01-17 20:25:44 +0200 | 
|---|---|---|
| committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2020-01-17 21:27:00 +0200 | 
| commit | cb30cee7a065a074394347f112451decc4847674 (patch) | |
| tree | 25f0ef36bb776a5e1938232e132b0a464fd5a9bc /src/mainwindow | |
| parent | Merge branch 'firefox-bookmarks-json-importer' (diff) | |
| download | smolbote-cb30cee7a065a074394347f112451decc4847674.tar.xz | |
Fix various gcc and clazy compile warnings
Diffstat (limited to 'src/mainwindow')
| -rw-r--r-- | src/mainwindow/menubar.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/mainwindow/menubar.cpp b/src/mainwindow/menubar.cpp index a8d0590..eecb61a 100644 --- a/src/mainwindow/menubar.cpp +++ b/src/mainwindow/menubar.cpp @@ -100,7 +100,7 @@ MenuBar::MenuBar(MainWindow *parent)                  return;              // findChildren -            for(QAction *a : this->findChildren<QAction *>()) { +            for(QAction *a : findChildren<QAction *>()) {                  if(a->text().contains(text))                      findMenu->addAction(a);              } | 
