Skip to content

Commit

Permalink
Add MessageDisplay to designer plugins. Refs #6202
Browse files Browse the repository at this point in the history
  • Loading branch information
martyngigg committed Apr 15, 2013
1 parent d3c2712 commit 4c38c97
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
#include "MantidQtMantidWidgets/SafeQwtPlot.h"
#include "MantidQtAPI/AlgorithmPropertiesWidget.h"
#include "MantidQtMantidWidgets/ProcessingAlgoWidget.h"
#include "MantidQtMantidWidgets/MessageDisplay.h"

/**
The PluginCollectionInterface implements the interface for the plugin library and holds a
Expand Down Expand Up @@ -138,4 +139,8 @@ DECLARE_WIDGET_PLUGIN(ProcessingAlgoWidgetPlugin,
MantidQt::MantidWidgets::ProcessingAlgoWidget,
"Choose an algorithm or write a script as a processing step");

DECLARE_WIDGET_PLUGIN(MessageDisplayPlugin,
MantidQt::MantidWidgets::MessageDisplay,
"Display messages with various priorities, optionally connecting to the logging framework");

#endif
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ PluginCollectionInterface::PluginCollectionInterface(QObject *parent) : QObject(

m_widgets.append(new FitBrowserPlugin(this));
m_widgets.append(new MuonFitBrowserPlugin(this));
m_widgets.append(new MessageDisplayPlugin(this));

}

Expand Down

0 comments on commit 4c38c97

Please sign in to comment.