diff options
author | Bernard Normier <bernard@zeroc.com> | 2005-08-12 14:35:27 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2005-08-12 14:35:27 +0000 |
commit | f19fe14d24b89120beba2e39920f2a1f7e1b958c (patch) | |
tree | 7fb98017e021d0b0ee074c474caf697219a2d9c2 /cppe/src/IceE/Initialize.cpp | |
parent | change line endings (diff) | |
download | ice-f19fe14d24b89120beba2e39920f2a1f7e1b958c.tar.bz2 ice-f19fe14d24b89120beba2e39920f2a1f7e1b958c.tar.xz ice-f19fe14d24b89120beba2e39920f2a1f7e1b958c.zip |
Some ICE_ to ICEE_ renamings
Diffstat (limited to 'cppe/src/IceE/Initialize.cpp')
-rw-r--r-- | cppe/src/IceE/Initialize.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppe/src/IceE/Initialize.cpp b/cppe/src/IceE/Initialize.cpp index 269a592a40d..b7a04d8b421 100644 --- a/cppe/src/IceE/Initialize.cpp +++ b/cppe/src/IceE/Initialize.cpp @@ -136,7 +136,7 @@ Ice::initializeWithProperties(int& argc, char* argv[], const PropertiesPtr& prop // // Major and minor version numbers must match. // - if(ICE_INT_VERSION / 100 != version / 100) + if(ICEE_INT_VERSION / 100 != version / 100) { throw VersionMismatchException(__FILE__, __LINE__); } @@ -144,7 +144,7 @@ Ice::initializeWithProperties(int& argc, char* argv[], const PropertiesPtr& prop // The caller's patch level cannot be greater than library's patch level. (Patch level changes are // backward-compatible, but not forward-compatible.) // - if(version % 100 > ICE_INT_VERSION % 100) + if(version % 100 > ICEE_INT_VERSION % 100) { throw VersionMismatchException(__FILE__, __LINE__); } |