diff options
| author | Eugene Popov <[email protected]> | 2021-09-13 18:34:40 +0300 |
|---|---|---|
| committer | Eugene Popov <[email protected]> | 2021-11-13 18:20:59 +0200 |
| commit | 1657216474020b9b345409f423d75ee34156e1d3 (patch) | |
| tree | edd78b5ca93e62fd847d235e3d65b1cfd189ea96 /src/dolphinviewcontainer.h | |
| parent | 4b4f9880785cef91fc97fa94c7ad82a1f95e35e5 (diff) | |
Fix updating window and tab titles
This MR fixes an issue where the window and tab titles don't properly handle creating/deleting/renaming items in the places bar, as well as switching to the Search mode.
Diffstat (limited to 'src/dolphinviewcontainer.h')
| -rw-r--r-- | src/dolphinviewcontainer.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/dolphinviewcontainer.h b/src/dolphinviewcontainer.h index 1a92e1fa6..304c9958d 100644 --- a/src/dolphinviewcontainer.h +++ b/src/dolphinviewcontainer.h @@ -223,6 +223,12 @@ Q_SIGNALS: */ void writeStateChanged(bool isFolderWritable); + /** + * Is emitted when the Caption has been changed. + * @see DolphinViewContainer::caption() + */ + void captionChanged(); + private Q_SLOTS: /** * Updates the number of items (= number of files + number of @@ -349,6 +355,12 @@ private Q_SLOTS: */ void showErrorMessage(const QString& msg); + /** + * Is invoked when a KFilePlacesModel has been changed + * @see DolphinPlacesModelSingleton::instance().placesModel() + */ + void slotPlacesModelChanged(); + private: /** * @return True if the URL protocol is a search URL (e. g. baloosearch:// or filenamesearch://). |
