diff options
| author | Serg Podtynnyi <[email protected]> | 2023-02-04 00:14:53 +0700 |
|---|---|---|
| committer | Serg Podtynnyi <[email protected]> | 2023-02-05 12:45:38 +0700 |
| commit | 38c34eeca315c7be58e65d4d3fb72aaf7b866719 (patch) | |
| tree | 886e53f20c9c43edc3eb7fe04789716a9bc98ebe /src/trash/dolphintrash.h | |
| parent | ffff8af851e3a386c44438337779d0ce7ca98a61 (diff) | |
Add clang-format and format code as in Frameworks
Diffstat (limited to 'src/trash/dolphintrash.h')
| -rw-r--r-- | src/trash/dolphintrash.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/trash/dolphintrash.h b/src/trash/dolphintrash.h index c65cf9232..388bc82ab 100644 --- a/src/trash/dolphintrash.h +++ b/src/trash/dolphintrash.h @@ -10,21 +10,21 @@ #include <QWidget> -#include <KIO/EmptyTrashJob> #include <KDirLister> +#include <KIO/EmptyTrashJob> -class Trash: public QObject +class Trash : public QObject { Q_OBJECT public: // delete copy and move constructors and assign operators - Trash(Trash const&) = delete; - Trash(Trash&&) = delete; - Trash& operator=(Trash const&) = delete; - Trash& operator=(Trash &&) = delete; + Trash(Trash const &) = delete; + Trash(Trash &&) = delete; + Trash &operator=(Trash const &) = delete; + Trash &operator=(Trash &&) = delete; - static Trash& instance(); + static Trash &instance(); static void empty(QWidget *window); static bool isEmpty(); |
