X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/67ebd66f94356b4e66005b1072919cb7b5e858bb..fc56f8f2f92b98ccb9a1da0ffcbb57d723dc33bb:/src/views/dolphinremoteencoding.h diff --git a/src/views/dolphinremoteencoding.h b/src/views/dolphinremoteencoding.h index ae1d78b6d..c59de6406 100644 --- a/src/views/dolphinremoteencoding.h +++ b/src/views/dolphinremoteencoding.h @@ -22,35 +22,35 @@ class DolphinViewActionHandler; * When browsing remote url, its possible to change encoding from Tools Menu. */ -class DOLPHIN_EXPORT DolphinRemoteEncoding: public QObject +class DOLPHIN_EXPORT DolphinRemoteEncoding : public QObject { - Q_OBJECT + Q_OBJECT public: - DolphinRemoteEncoding(QObject* parent, DolphinViewActionHandler* actionHandler); - ~DolphinRemoteEncoding() override; + DolphinRemoteEncoding(QObject *parent, DolphinViewActionHandler *actionHandler); + ~DolphinRemoteEncoding() override; public Q_SLOTS: - void slotAboutToOpenUrl(); - void slotItemSelected(QAction* action); - void slotReload(); - void slotDefault(); + void slotAboutToOpenUrl(); + void slotItemSelected(QAction *action); + void slotReload(); + void slotDefault(); private Q_SLOTS: - void slotAboutToShow(); + void slotAboutToShow(); private: - void updateView(); - void loadSettings(); - void fillMenu(); - void updateMenu(); - - KActionMenu* m_menu; - QStringList m_encodingDescriptions; - QUrl m_currentURL; - DolphinViewActionHandler* m_actionHandler; - - bool m_loaded; - int m_idDefault; + void updateView(); + void loadSettings(); + void fillMenu(); + void updateMenu(); + + KActionMenu *m_menu; + QStringList m_encodingDescriptions; + QUrl m_currentURL; + DolphinViewActionHandler *m_actionHandler; + + bool m_loaded; + int m_idDefault; }; #endif