diff options
author | sj <sj@openoffice.org> | 2010-08-25 20:45:55 +0200 |
---|---|---|
committer | sj <sj@openoffice.org> | 2010-08-25 20:45:55 +0200 |
commit | c2823b2321863724e0357c10f23a24cb8021073d (patch) | |
tree | bb5f52dbdbb84dba0a93c6cced5e60c08ea0e8d1 | |
parent | c86fd8453e7fc925cb8f0f8ffff7990896da71ec (diff) |
impress186: #i4499# fixed compile error
-rwxr-xr-x | svtools/source/filter.vcl/filter/exportdialog.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svtools/source/filter.vcl/filter/exportdialog.cxx b/svtools/source/filter.vcl/filter/exportdialog.cxx index 36ce7b63c87d..94e778c9be84 100755 --- a/svtools/source/filter.vcl/filter/exportdialog.cxx +++ b/svtools/source/filter.vcl/filter/exportdialog.cxx @@ -1226,23 +1226,23 @@ void ExportDialog::updatePreview() Size aSize; if ( fXRatio > 1.0 ) { - aSize.Width() = Max( maSize.Width, aFixedBitmapSize.Width() ); + aSize.Width() = ::std::max( maSize.Width, aFixedBitmapSize.Width() ); aSize.Width() /= fXRatio; } else { - aSize.Width() = Min( maSize.Width, aFixedBitmapSize.Width() ); + aSize.Width() = ::std::min( maSize.Width, aFixedBitmapSize.Width() ); aSize.Width() /= fXRatio; } if ( fYRatio > 1.0 ) { - aSize.Height() = Max( maSize.Height, aFixedBitmapSize.Height() ); + aSize.Height() = ::std::max( maSize.Height, aFixedBitmapSize.Height() ); aSize.Height() /= fYRatio; } else { - aSize.Height() = Min( maSize.Height, aFixedBitmapSize.Height() ); + aSize.Height() = ::std::min( maSize.Height, aFixedBitmapSize.Height() ); aSize.Height() /= fYRatio; } |