diff options
| author | Felix Ernst <[email protected]> | 2020-11-05 23:30:07 +0100 |
|---|---|---|
| committer | Elvis Angelaccio <[email protected]> | 2020-11-09 23:49:07 +0100 |
| commit | 2d4d2ce9a14902ee5a2b236f8510596fc2f86b99 (patch) | |
| tree | 07607a2561e3f6e268e4e883f422582bdc908013 /src/dolphintabwidget.h | |
| parent | 42023831374496c62708ce7ad2cdd69104a1c820 (diff) | |
Adress most of the second round of Angelaccio's review comments
This commit applies most suggestions which were made on the MR.
Most notably the DolphinUrlNavigator class is split up which leads to
the creation of a DolphinUrlNavigatorsController class.
Additionally some minor coding style and const correctness changes are
included.
The error value of cached integers is changed from -1 to INT_MIN
because situations could come up in which -1 would be a valid value.
Diffstat (limited to 'src/dolphintabwidget.h')
| -rw-r--r-- | src/dolphintabwidget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphintabwidget.h b/src/dolphintabwidget.h index 707eb086a..4a1b9d99c 100644 --- a/src/dolphintabwidget.h +++ b/src/dolphintabwidget.h @@ -8,11 +8,11 @@ #define DOLPHIN_TAB_WIDGET_H #include "dolphinnavigatorswidgetaction.h" +#include "dolphintabpage.h" #include <QTabWidget> #include <QUrl> -class DolphinTabPage; class DolphinViewContainer; class KConfigGroup; |
