Skip to content

Commit

Permalink
refs #3763 Fixing Unix warning
Browse files Browse the repository at this point in the history
(to see where the error actually come from)
  • Loading branch information
abuts committed Nov 10, 2011
1 parent eb9c8b2 commit 3a92482
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Expand Up @@ -113,6 +113,7 @@ namespace Kernel

virtual void modify_validator(IValidator<TYPE> *pNewValidator)
{
UNUSED_ARG(pNewValidator);
}
private:
/// Private Copy constructor: NO DIRECT COPY ALLOWED
Expand Down
4 changes: 2 additions & 2 deletions Code/Mantid/MantidQt/API/inc/MantidQtAPI/AlgorithmDialog.h
Expand Up @@ -248,13 +248,13 @@ protected slots:
@pProp -- the pointer to the property
@row -- the vertical position of the property widget within the initated dialog box
Should be pure virtual but as current custom vidgets do not use it, made empty unless overloaded */
virtual void createSpecificPropertyWidget(Mantid::Kernel::Property *pProp, int row){};
virtual void createSpecificPropertyWidget(Mantid::Kernel::Property *, int ){};
/** The function deletes widgets, associated with property;
It used in dynamic propeties, which change as property contents, validators or settings change
@pProp -- the pointer to the property
returns-- the vertical position of the composite widget within the widget window;
Should be pure virtual but as current custom vidgets do not use it, made empty unless overloaded */
virtual int deletePropertyWidgets(Mantid::Kernel::Property *pProp){return -1;}
virtual int deletePropertyWidgets(Mantid::Kernel::Property *){return -1;}

/** @name Member variables. */
//@{
Expand Down

0 comments on commit 3a92482

Please sign in to comment.