┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/views/dolphinremoteencoding.h
diff options
context:
space:
mode:
authorSerg Podtynnyi <[email protected]>2023-02-04 00:14:53 +0700
committerSerg Podtynnyi <[email protected]>2023-02-05 12:45:38 +0700
commit38c34eeca315c7be58e65d4d3fb72aaf7b866719 (patch)
tree886e53f20c9c43edc3eb7fe04789716a9bc98ebe /src/views/dolphinremoteencoding.h
parentffff8af851e3a386c44438337779d0ce7ca98a61 (diff)
Add clang-format and format code as in Frameworks
Diffstat (limited to 'src/views/dolphinremoteencoding.h')
-rw-r--r--src/views/dolphinremoteencoding.h38
1 files changed, 19 insertions, 19 deletions
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();
+ void updateView();
+ void loadSettings();
+ void fillMenu();
+ void updateMenu();
- KActionMenu* m_menu;
- QStringList m_encodingDescriptions;
- QUrl m_currentURL;
- DolphinViewActionHandler* m_actionHandler;
+ KActionMenu *m_menu;
+ QStringList m_encodingDescriptions;
+ QUrl m_currentURL;
+ DolphinViewActionHandler *m_actionHandler;
- bool m_loaded;
- int m_idDefault;
+ bool m_loaded;
+ int m_idDefault;
};
#endif