#86837# short values!

This commit is contained in:
Malte Timmermann 2001-06-01 10:57:33 +00:00
parent 3b5020b293
commit 063ca6c737

View file

@ -2,9 +2,9 @@
*
* $RCSfile: ImageAlign.idl,v $
*
* $Revision: 1.1 $
* $Revision: 1.2 $
*
* last change: $Author: mt $ $Date: 2001-06-01 11:34:30 $
* last change: $Author: mt $ $Date: 2001-06-01 11:57:33 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -76,25 +76,25 @@ constants ImageAlign
/** specifies to align left.
*/
const long LEFT = 0;
const short LEFT = 0;
//-------------------------------------------------------------------------
/** specifies to align top.
*/
const long TOP = 0;
const short TOP = 1;
//-------------------------------------------------------------------------
/** specifies to align right.
*/
const long RIGHT = 0;
const short RIGHT = 2;
//-------------------------------------------------------------------------
/** specifies to align bottom.
*/
const long BOTTOM = 0;
const short BOTTOM = 3;
};
//=============================================================================
@ -104,6 +104,9 @@ constants ImageAlign
/*=============================================================================
$Log: not supported by cvs2svn $
Revision 1.1 2001/06/01 11:34:30 mt
#86837# ImageAlign
=============================================================================*/
#endif