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>2019-03-15 14:12:13 +0300
committerKevin Ottens <kevin.ottens@nextcloud.com>2020-12-15 12:58:47 +0300
commit22234e0e73bac08353e84ef5a3e43e360b4057c0 (patch)
treeaae923f02e8276c38388ab621e24833480aa8202 /src/gui/logbrowser.h
parentdcf34316fdff1dae3f2aa41ff7f822232c74dfdd (diff)
LogWindow: Remove output, add "go to log folder" button #6475
Diffstat (limited to 'src/gui/logbrowser.h')
-rw-r--r--src/gui/logbrowser.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/gui/logbrowser.h b/src/gui/logbrowser.h
index 7694b6311..c49e26b73 100644
--- a/src/gui/logbrowser.h
+++ b/src/gui/logbrowser.h
@@ -30,19 +30,6 @@
namespace OCC {
/**
- * @brief The LogWidget class
- * @ingroup gui
- */
-class LogWidget : public QPlainTextEdit
-{
- Q_OBJECT
-public:
- explicit LogWidget(QWidget *parent = nullptr);
-
-signals:
-};
-
-/**
* @brief The LogBrowser class
* @ingroup gui
*/
@@ -53,29 +40,11 @@ public:
explicit LogBrowser(QWidget *parent = nullptr);
~LogBrowser();
- void setLogFile(const QString &, bool);
-
protected:
- void showEvent(QShowEvent *) override;
void closeEvent(QCloseEvent *) override;
protected slots:
- void slotNewLog(const QString &msg);
- void slotFind();
- void slotDebugCheckStateChanged(int);
- void search(const QString &);
- void slotSave();
- void slotClearLog();
void togglePermanentLogging(bool enabled);
-
-private:
- LogWidget *_logWidget;
- QLineEdit *_findTermEdit;
- QCheckBox *_logDebugCheckBox;
- QCheckBox *_permanentLogging;
- QPushButton *_saveBtn;
- QPushButton *_clearBtn;
- QLabel *_statusLabel;
};
} // namespace