Skip to content

Commit

Permalink
Refs #11597 fix doxygen warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonPiccardoSelg committed Apr 24, 2015
1 parent 671d8ba commit ad992a7
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ class EXPORT_OPT_MANTIDVATES_SIMPLEGUI_VIEWWIDGETS MultiSliceView : public ViewB
/**
* Default constructor.
* @param parent the parent widget of the multislice view widget
* @param rebinnedSourcesManager Pointer to a RebinnedSourcesManager
*/
MultiSliceView(QWidget *parent = 0, RebinnedSourcesManager* rebinnedSourcesManager = 0);
/// Default constructor.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ class EXPORT_OPT_MANTIDVATES_SIMPLEGUI_VIEWWIDGETS SplatterPlotView : public Vie
/**
* Default constructor.
* @param parent the parent widget for the threeslice view
* @param rebinnedSourcesManager Pointer to a RebinnedSourcesManager
*/
explicit SplatterPlotView(QWidget *parent = 0, RebinnedSourcesManager* rebinnedSourcesManager = 0);
/// Default destructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ class EXPORT_OPT_MANTIDVATES_SIMPLEGUI_VIEWWIDGETS ThreeSliceView : public ViewB
/**
* Default constructor.
* @param parent the parent widget for the threeslice view
* @param rebinnedSourcesManager Pointer to a RebinnedSourcesManager
*/
ThreeSliceView(QWidget *parent = 0, RebinnedSourcesManager* rebinnedSourcesManager = 0);
/// Default destructor.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ namespace Mantid

/**
* Get the stored workspace names assoicated with a source.
* @param source The name of the source.
* @param src The name of the source.
* @param originalWorkspaceName The name of the original workspace.
* @param rebinnedWorkspaceName The name of the rebinned workspace.
*/
Expand Down Expand Up @@ -715,7 +715,7 @@ namespace Mantid

/**
* Delete a specific source and all of its filters. This assumes a linear filter system
* @param workspaceName The workspaceName associated with the source which is to be deleted
* @param source A pointer to the source
*/
void RebinnedSourcesManager::deleteSpecificSource(pqPipelineSource* source)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ namespace SimpleGui
* This function sets up the UI components, adds connections for the view's
* buttons and creates the rendering view.
* @param parent the parent widget for the standard view
* @param rebinnedSourcesManager Pointer to a RebinnedSourcesManager
*/
StandardView::StandardView(QWidget *parent, RebinnedSourcesManager* rebinnedSourcesManager) : ViewBase(parent, rebinnedSourcesManager),
m_binMDAction(NULL),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ namespace SimpleGui
/**
* Default constructor.
* @param parent the parent widget for the view
* @param rebinnedSourcesManager Pointer to a RebinnedSourcesManager
*/
ViewBase::ViewBase(QWidget *parent, RebinnedSourcesManager* rebinnedSourcesManager) : QWidget(parent),
m_rebinnedSourcesManager(rebinnedSourcesManager), m_currentColorMapModel(NULL), m_temporaryWorkspaceIdentifier("rebinned_vsi")
Expand Down

0 comments on commit ad992a7

Please sign in to comment.