diff options
| author | Peter Penz <[email protected]> | 2012-04-17 22:19:18 +0200 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2012-04-17 22:21:55 +0200 |
| commit | beeb9078f543af84e6364f1f5fe214453388f1b9 (patch) | |
| tree | a233ca14a66e67896642e723b89870ed4ecb3181 /src/panels/information/informationpanel.h | |
| parent | 9f94aac23f8b6519de4847063fa20f588f9797ea (diff) | |
Ensure authentication data is cached properly
The attached patch sets the main window on the main directory
lister in DolphinView and KIO jobs in DolphinMainWindow to ensure
that login data for remote protocols such as sftp, ftp are cached
properly for the duration of the application. Otherwise, the end
user is going to end up being unnecessarily re-prompted to enter
password login information.
Thanks to Dawit Alemayehu for the patch!
REVIEW: 104614
FIXED-IN: 4.9.0
Diffstat (limited to 'src/panels/information/informationpanel.h')
| -rw-r--r-- | src/panels/information/informationpanel.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/panels/information/informationpanel.h b/src/panels/information/informationpanel.h index 8a7ad6bb7..c68b66ee1 100644 --- a/src/panels/information/informationpanel.h +++ b/src/panels/information/informationpanel.h @@ -23,6 +23,10 @@ #include <panels/panel.h> class InformationPanelContent; +namespace KIO +{ + class Job; +} /** * @brief Panel for showing meta information of one ore more selected items. @@ -147,7 +151,7 @@ private: KFileItem m_fileItem; // file item for m_shownUrl if available (otherwise null) KFileItemList m_selection; - KJob* m_folderStatJob; + KIO::Job* m_folderStatJob; InformationPanelContent* m_content; }; |
