Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Kamm <mail@ckamm.de>2017-05-17 11:55:42 +0300
committerckamm <mail@ckamm.de>2017-05-17 13:26:27 +0300
commitc8d0f788e00bdae125a26d9159ce9efdd6325cd2 (patch)
treead77cb515fe650984e6b76dfffe09838090d77bd /src/gui/logbrowser.h
parentae263d60bd6d1bc0eb0c3712bab11de120b8cdd3 (diff)
Apply clang-format
Diffstat (limited to 'src/gui/logbrowser.h')
-rw-r--r--src/gui/logbrowser.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/gui/logbrowser.h b/src/gui/logbrowser.h
index 940e7a927..a1c5c6da0 100644
--- a/src/gui/logbrowser.h
+++ b/src/gui/logbrowser.h
@@ -33,14 +33,13 @@ namespace OCC {
* @brief The LogWidget class
* @ingroup gui
*/
-class LogWidget : public QPlainTextEdit
+class LogWidget : public QPlainTextEdit
{
Q_OBJECT
public:
explicit LogWidget(QWidget *parent = 0);
signals:
-
};
/**
@@ -49,22 +48,22 @@ signals:
*/
class LogBrowser : public QDialog
{
- Q_OBJECT
+ Q_OBJECT
public:
explicit LogBrowser(QWidget *parent = 0);
~LogBrowser();
- void setLogFile(const QString& , bool );
+ void setLogFile(const QString &, bool);
protected:
void showEvent(QShowEvent *) Q_DECL_OVERRIDE;
void closeEvent(QCloseEvent *) Q_DECL_OVERRIDE;
protected slots:
- void slotNewLog( const QString &msg );
+ void slotNewLog(const QString &msg);
void slotFind();
void slotDebugCheckStateChanged(int);
- void search( const QString& );
+ void search(const QString &);
void slotSave();
void slotClearLog();
@@ -74,8 +73,7 @@ private:
QCheckBox *_logDebugCheckBox;
QPushButton *_saveBtn;
QPushButton *_clearBtn;
- QLabel *_statusLabel;
-
+ QLabel *_statusLabel;
};
} // namespace