mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
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:
parent
e66edeba4b
commit
c96aa295e8
@ -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]:
|
||||
@ -27,7 +33,7 @@
|
||||
|
||||
* forms/form_minipage.fd: add text_warning field.
|
||||
|
||||
*FormMinipage.[Ch]: added input filters and warnings
|
||||
* FormMinipage.[Ch]: added input filters and warnings
|
||||
(ButtonPolicy::SMInput FormMinipage::input)
|
||||
|
||||
2002-01-28 Angus Leeming <a.leeming@ic.ac.uk>
|
||||
|
@ -48,7 +48,7 @@ private:
|
||||
boost::scoped_ptr<FD_form_maths_space> dialog_;
|
||||
|
||||
/// The current choice.
|
||||
short space_;
|
||||
int space_;
|
||||
};
|
||||
|
||||
#endif // FORM_MATHSSPACE_H
|
||||
|
@ -48,7 +48,7 @@ private:
|
||||
boost::scoped_ptr<FD_form_maths_style> dialog_;
|
||||
|
||||
/// The current choice.
|
||||
short style_;
|
||||
int style_;
|
||||
};
|
||||
|
||||
#endif // FORM_MATHSSTYLE_H
|
||||
|
Loading…
Reference in New Issue
Block a user