summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-04-14 10:24:15 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-04-14 10:24:15 +0000
commit76bbbd82acb1140ab735f6883ce01835835310ac (patch)
tree9a297adf5c79067b49fc7cc749d5899e34b89d11 /forms
parent628d6cf7d64c875fbb4481ef6d2dd0d0bb4f43e3 (diff)
#i10000# SUNW compiler did not like global operators made visible via using directive
Diffstat (limited to 'forms')
-rw-r--r--forms/source/component/navigationbar.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/forms/source/component/navigationbar.cxx b/forms/source/component/navigationbar.cxx
index cdcd2ad92db3..f38a1b1e580c 100644
--- a/forms/source/component/navigationbar.cxx
+++ b/forms/source/component/navigationbar.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: navigationbar.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: hr $ $Date: 2004-04-14 09:39:21 $
+ * last change: $Author: hr $ $Date: 2004-04-14 11:24:15 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -308,7 +308,7 @@ namespace frm
{
OStreamSection aEnsureCompat( xDataOut );
- _rxOutStream << getFont();
+ ::comphelper::operator<<( _rxOutStream, getFont() );
}
// our boolean flags
@@ -370,7 +370,7 @@ namespace frm
{
OStreamSection aEnsureCompat( xDataIn );
FontDescriptor aFont;
- _rxInStream >> aFont;
+ ::comphelper::operator>>( _rxInStream, aFont );
setFont( aFont );
}