Fix a small compiler warning.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3451 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2002-01-29 16:40:07 +00:00
parent e66edeba4b
commit c96aa295e8
3 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2002-01-29 Angus Leeming <a.leeming@ic.ac.uk>
* FormMathsSpace.h (space_):
* FormMathsStyle.h (style_): change from a short to an int to fix
type conversion warnings.
2002-01-28 Martin Vermeer <martin.vermeer@hut.fi>
* FormMathsSpace.[Ch]:

View File

@ -48,7 +48,7 @@ private:
boost::scoped_ptr<FD_form_maths_space> dialog_;
/// The current choice.
short space_;
int space_;
};
#endif // FORM_MATHSSPACE_H

View File

@ -48,7 +48,7 @@ private:
boost::scoped_ptr<FD_form_maths_style> dialog_;
/// The current choice.
short style_;
int style_;
};
#endif // FORM_MATHSSTYLE_H