diff options
author | Oliver Bolte <obo@openoffice.org> | 2007-01-23 10:41:01 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2007-01-23 10:41:01 +0000 |
commit | fc4764f42866ee262f71ad5c82b9ee8eaeaa60d2 (patch) | |
tree | 72dfc9a304562432ecdfa3a922312cb2808c672b /dbaccess/source/ui/dlg/adminpages.cxx | |
parent | cacec5c9eff4bc6d9da871ca72c946e00c23a057 (diff) |
INTEGRATION: CWS mfdouble (1.44.56); FILE MERGED
2006/12/19 17:29:41 pl 1.44.56.1: #i71046# increase precision of MetricField and friends
Diffstat (limited to 'dbaccess/source/ui/dlg/adminpages.cxx')
-rw-r--r-- | dbaccess/source/ui/dlg/adminpages.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/ui/dlg/adminpages.cxx b/dbaccess/source/ui/dlg/adminpages.cxx index 74a17fd8a67e..6aa08af78b44 100644 --- a/dbaccess/source/ui/dlg/adminpages.cxx +++ b/dbaccess/source/ui/dlg/adminpages.cxx @@ -4,9 +4,9 @@ * * $RCSfile: adminpages.cxx,v $ * - * $Revision: 1.44 $ + * $Revision: 1.45 $ * - * last change: $Author: obo $ $Date: 2006-09-17 07:07:06 $ + * last change: $Author: obo $ $Date: 2007-01-23 11:41:01 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -297,7 +297,7 @@ DBG_NAME(OGenericAdministrationPage) { if( (_pEdit != NULL) && (_pEdit->GetValue() != _pEdit->GetSavedValue().ToInt32()) ) { - _rSet.Put(SfxInt32Item(_nID, _pEdit->GetValue())); + _rSet.Put(SfxInt32Item(_nID, static_cast<INT32>(_pEdit->GetValue()))); _bChangedSomething = sal_True; } } |