aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/LPanel.h
diff options
context:
space:
mode:
Diffstat (limited to 'lumina-desktop/LPanel.h')
-rw-r--r--lumina-desktop/LPanel.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lumina-desktop/LPanel.h b/lumina-desktop/LPanel.h
index cee1b5c7..396ffecc 100644
--- a/lumina-desktop/LPanel.h
+++ b/lumina-desktop/LPanel.h
@@ -41,7 +41,6 @@ private:
int panelnum;
int viswidth;
QList<LPPlugin*> PLUGINS;
- WId tmpID; //temporary window ID
public:
LPanel(QSettings *file, int scr = 0, int num =0, QWidget *parent=0); //settings file, screen number, panel number
@@ -66,6 +65,9 @@ public slots:
void UpdateLocale(); //Locale Changed externally
void UpdateTheme(); //Theme Changed externally
+private slots:
+ void checkPanelFocus();
+
protected:
void paintEvent(QPaintEvent *event);
void enterEvent(QEvent *event);
bgstack15