]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/panels/panel.cpp
SVN_SILENT made messages (.desktop file) - always resolve ours
[dolphin.git] / src / panels / panel.cpp
index 9e62cc8e35bffa621d5a2ba5f698da1e2b472388..e13684922771575cc9b0a543cbe5774996eae468 100644 (file)
@@ -7,10 +7,10 @@
 
 #include "panel.h"
 
-Panel::Panel(QWidget* parent) :
-    QWidget(parent),
-    m_url(),
-    m_customContextMenuActions()
+Panel::Panel(QWidget *parent)
+    : QWidget(parent)
+    , m_url()
+    m_customContextMenuActions()
 {
 }
 
@@ -23,12 +23,12 @@ QUrl Panel::url() const
     return m_url;
 }
 
-void Panel::setCustomContextMenuActions(const QList<QAction*>& actions)
+void Panel::setCustomContextMenuActions(const QList<QAction *> &actions)
 {
     m_customContextMenuActions = actions;
 }
 
-QList<QAction*> Panel::customContextMenuActions() const
+QList<QAction *> Panel::customContextMenuActions() const
 {
     return m_customContextMenuActions;
 }
@@ -43,7 +43,7 @@ QSize Panel::sizeHint() const
     return QSize(180, 180);
 }
 
-void Panel::setUrl(const QUrlurl)
+void Panel::setUrl(const QUrl &url)
 {
     if (url.matches(m_url, QUrl::StripTrailingSlash)) {
         return;
@@ -58,6 +58,6 @@ void Panel::setUrl(const QUrl& url)
 
 void Panel::readSettings()
 {
-
 }
 
+#include "moc_panel.cpp"