User: hr      
Date: 06/06/19 19:44:19

Modified:
 /dba/dbaccess/source/core/dataaccess/
  databasedocument.cxx

Log:
 INTEGRATION: CWS warnings01 (1.24.22); FILE MERGED
 2006/05/23 23:44:32 sb 1.24.22.3: RESYNC: (1.26-1.28); FILE MERGED
 2006/04/07 20:47:01 sb 1.24.22.2: RESYNC: (1.24-1.26); FILE MERGED
 2006/03/24 15:35:52 fs 1.24.22.1: #i57457# warning-free code (unxlngi6/.pro + 
unxsoli4.pro)

File Changes:

Directory: /dba/dbaccess/source/core/dataaccess/
================================================

File [changed]: databasedocument.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/dataaccess/databasedocument.cxx?r1=1.28&r2=1.29
Delta lines:  +7 -6
-------------------
--- databasedocument.cxx        4 May 2006 08:37:50 -0000       1.28
+++ databasedocument.cxx        20 Jun 2006 02:44:17 -0000      1.29
@@ -687,15 +687,18 @@
 // ::com::sun::star::view::XPrintable
 Sequence< PropertyValue > SAL_CALL ODatabaseDocument::getPrinter(  ) throw 
(RuntimeException)
 {
+    DBG_ERROR( "ODatabaseDocument::getPrinter: not supported!" );
        return Sequence< PropertyValue >();
 }
 // 
-----------------------------------------------------------------------------
-void SAL_CALL ODatabaseDocument::setPrinter( const Sequence< PropertyValue >& 
aPrinter ) throw (IllegalArgumentException, RuntimeException)
+void SAL_CALL ODatabaseDocument::setPrinter( const Sequence< PropertyValue >& 
/*aPrinter*/ ) throw (IllegalArgumentException, RuntimeException)
 {
+    DBG_ERROR( "ODatabaseDocument::setPrinter: not supported!" );
 }
 // 
-----------------------------------------------------------------------------
-void SAL_CALL ODatabaseDocument::print( const Sequence< PropertyValue >& 
xOptions ) throw (IllegalArgumentException, RuntimeException)
+void SAL_CALL ODatabaseDocument::print( const Sequence< PropertyValue >& 
/*xOptions*/ ) throw (IllegalArgumentException, RuntimeException)
 {
+    DBG_ERROR( "ODatabaseDocument::print: not supported!" );
 }
 // 
-----------------------------------------------------------------------------
 void ODatabaseDocument::impl_reparent_nothrow( const WeakReference< 
XNameAccess >& _rxContainer )
@@ -855,17 +858,15 @@
 
        if( bPlainStream )
        {
-               ::rtl::OUString aPropName( 
RTL_CONSTASCII_USTRINGPARAM("Compressed") );
                sal_Bool bFalse = sal_False;
                aAny.setValue( &bFalse, ::getBooleanCppuType() );
-               xStreamProp->setPropertyValue( aPropName, aAny );
+               xStreamProp->setPropertyValue( ::rtl::OUString( 
RTL_CONSTASCII_USTRINGPARAM("Compressed") ), aAny );
        }
        else
        {
-               ::rtl::OUString aPropName( 
RTL_CONSTASCII_USTRINGPARAM("Encrypted") );
                sal_Bool bTrue = sal_True;
                aAny.setValue( &bTrue, ::getBooleanCppuType() );
-               xStreamProp->setPropertyValue( aPropName, aAny );
+               xStreamProp->setPropertyValue( ::rtl::OUString( 
RTL_CONSTASCII_USTRINGPARAM("Encrypted") ), aAny );
        }
 
 




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to