diff options
| author | Peter Penz <[email protected]> | 2012-04-11 21:52:15 +0200 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2012-04-11 21:53:45 +0200 |
| commit | 40c71d5ce0f6978ce48eb67fd73ed211bab4e887 (patch) | |
| tree | 92f118d9f937dc94e0ea6f7c5ae0a6d19a900db5 /src/views/dolphinview.h | |
| parent | ff0a86288e14f811a353f05e21898eef223525d2 (diff) | |
KFileItemModel: interface cleanups
Fix some naming inconsistencies regarding the usage of 'dir' vs.
'directory' vs. 'folder'.
Diffstat (limited to 'src/views/dolphinview.h')
| -rw-r--r-- | src/views/dolphinview.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/views/dolphinview.h b/src/views/dolphinview.h index b181ea3ab..f95572564 100644 --- a/src/views/dolphinview.h +++ b/src/views/dolphinview.h @@ -456,25 +456,25 @@ signals: * it is assured that the view contains already the correct root * URL and property settings. */ - void dirLoadingStarted(); + void directoryLoadingStarted(); /** * Is emitted after the directory triggered by DolphinView::setUrl() * has been loaded. */ - void dirLoadingCompleted(); + void directoryLoadingCompleted(); /** * Is emitted after DolphinView::setUrl() has been invoked and provides * the information how much percent of the current directory have been loaded. */ - void dirLoadingProgress(int percent); + void directoryLoadingProgress(int percent); /** * Is emitted if the sorting is done asynchronously and provides the * progress information of the sorting. */ - void dirSortingProgress(int percent); + void directorySortingProgress(int percent); /** * Emitted when the file-item-model emits redirection. @@ -585,13 +585,13 @@ private slots: * Invoked when the file item model has started the loading * of the directory specified by DolphinView::url(). */ - void slotDirLoadingStarted(); + void slotDirectoryLoadingStarted(); /** * Invoked when the file item model indicates that the loading of a directory has * been completed. Assures that pasted items and renamed items get seleced. */ - void slotDirLoadingCompleted(); + void slotDirectoryLoadingCompleted(); /** * Is invoked when items of KFileItemModel have been changed. @@ -636,7 +636,7 @@ private slots: * Called when a redirection happens. * Testcase: fish://localhost */ - void slotRedirection(const KUrl& oldUrl, const KUrl& newUrl); + void slotDirectoryRedirection(const KUrl& oldUrl, const KUrl& newUrl); /** * Applies the state that has been restored by restoreViewState() |
