aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/panel-plugins/userbutton/UserItemWidget.h
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-04-27 15:05:03 -0400
committerKen Moore <ken@pcbsd.org>2015-04-27 15:05:03 -0400
commitddf397d485ddb2cc391f8e0e7fe74642891d62e9 (patch)
tree727677845f062d26288e82ef2997d1b813efcee8 /lumina-desktop/panel-plugins/userbutton/UserItemWidget.h
parentAdd support for system-defined default non-mime applications in the luminaDes... (diff)
downloadlumina-ddf397d485ddb2cc391f8e0e7fe74642891d62e9.tar.gz
lumina-ddf397d485ddb2cc391f8e0e7fe74642891d62e9.tar.bz2
lumina-ddf397d485ddb2cc391f8e0e7fe74642891d62e9.zip
Setup the lumina-desktop to use the new favorites system:
1) Convert any old system to the new one on login (0.8.4-devel users will need to wait until 0.8.4-release or 0.8.5-devel - the next change to the session version). 2) Update the User Buton plugin to use the new system and streamline when it actually probes the filesystem for changes (makes it even faster) 3) Update the Desktop Bar plugin to use the new system as well.
Diffstat (limited to 'lumina-desktop/panel-plugins/userbutton/UserItemWidget.h')
-rw-r--r--lumina-desktop/panel-plugins/userbutton/UserItemWidget.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lumina-desktop/panel-plugins/userbutton/UserItemWidget.h b/lumina-desktop/panel-plugins/userbutton/UserItemWidget.h
index 1f428ac4..a65d3e83 100644
--- a/lumina-desktop/panel-plugins/userbutton/UserItemWidget.h
+++ b/lumina-desktop/panel-plugins/userbutton/UserItemWidget.h
@@ -1,6 +1,6 @@
//===========================================
// Lumina-DE source code
-// Copyright (c) 2014, Ken Moore
+// Copyright (c) 2014-2015, Ken Moore
// Available under the 3-clause BSD license
// See the LICENSE file for full details
//===========================================
@@ -25,7 +25,7 @@
class UserItemWidget : public QFrame{
Q_OBJECT
public:
- UserItemWidget(QWidget *parent=0, QString itemPath="", bool isDir=false, bool goback=false);
+ UserItemWidget(QWidget *parent=0, QString itemPath="", QString type="unknown", bool goback=false);
UserItemWidget(QWidget *parent=0, XDGDesktop item= XDGDesktop());
~UserItemWidget();
@@ -54,4 +54,4 @@ signals:
};
-#endif \ No newline at end of file
+#endif
bgstack15