refs #891, formatting

This commit is contained in:
Klaus Basan
2017-02-28 04:29:10 +01:00
committed by Mathew Sutcliffe
parent 05abf7e359
commit e2b573b850
9 changed files with 17 additions and 29 deletions

View File

@@ -31,14 +31,12 @@ namespace BlackGui
*/
class BLACKGUI_EXPORT IPluginConfig
{
public:
//! Dtor.
virtual ~IPluginConfig() {}
//! Creates a new config window and returns its pointer.
virtual CPluginConfigWindow *createConfigWindow(QWidget *parent) = 0;
};
}

View File

@@ -35,5 +35,4 @@ namespace BlackGui {
Q_UNUSED(event);
}
}

View File

@@ -34,8 +34,7 @@ namespace BlackGui
protected:
//! \copydoc QWidget::showEvent()
virtual void showEvent(QShowEvent *event) override;
};
}
#endif // CPLUGINCONFIGWINDOW_H
#endif // guard

View File

@@ -23,8 +23,8 @@ class QSignalMapper;
namespace BlackGui
{
/*!
* Shows all available plugins in nice list and lets user enable, disable and configure
* each of them.
* Shows all available plugins in a nice list and lets
* user enable, disable and configure each of them.
*/
class BLACKGUI_EXPORT CPluginSelector : public QWidget
{