Index: patch-connectivity__source__drivers__ado__AColumn.cxx =================================================================== --- patch-connectivity__source__drivers__ado__AColumn.cxx (revision 0) +++ patch-connectivity__source__drivers__ado__AColumn.cxx (working copy) @@ -0,0 +1,11 @@ +--- ./connectivity/source/drivers/ado/AColumn.cxx.orig 2012-07-03 07:01:28.000000000 -0400 ++++ ./connectivity/source/drivers/ado/AColumn.cxx 2012-07-18 14:48:46.000000000 -0400 +@@ -117,7 +117,7 @@ + sal_Int32 nAttrib = isNew() ? 0 : PropertyAttribute::READONLY; + + registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_ISASCENDING), PROPERTY_ID_ISASCENDING, nAttrib,&m_IsAscending, ::getBooleanCppuType()); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_RELATEDCOLUMN), PROPERTY_ID_RELATEDCOLUMN, nAttrib,&m_ReferencedColumn, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_RELATEDCOLUMN), PROPERTY_ID_RELATEDCOLUMN, nAttrib,&m_ReferencedColumn, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); + } + // ----------------------------------------------------------------------------- + void OAdoColumn::setFastPropertyValue_NoBroadcast(sal_Int32 nHandle,const Any& rValue)throw (Exception) Property changes on: patch-connectivity__source__drivers__ado__AColumn.cxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: patch-extensions__source__resource__ResourceIndexAccess.cxx =================================================================== --- patch-extensions__source__resource__ResourceIndexAccess.cxx (revision 0) +++ patch-extensions__source__resource__ResourceIndexAccess.cxx (working copy) @@ -0,0 +1,20 @@ +--- ./extensions/source/resource/ResourceIndexAccess.cxx.orig 2012-07-03 07:01:28.000000000 -0400 ++++ ./extensions/source/resource/ResourceIndexAccess.cxx 2012-07-18 15:15:23.000000000 -0400 +@@ -94,7 +94,7 @@ + virtual ::com::sun::star::uno::Any SAL_CALL getByIndex( ::sal_Int32 Index ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException); + // XElementAccessBase + virtual ::com::sun::star::uno::Type SAL_CALL getElementType( ) throw (::com::sun::star::uno::RuntimeException) +- { return ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL)); }; ++ { return ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0)); }; + }; + + class ResourceStringListIndexAccess : public ResourceIndexAccessBase +@@ -106,7 +106,7 @@ + virtual ::com::sun::star::uno::Any SAL_CALL getByIndex( ::sal_Int32 Index ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException); + // XElementAccessBase + virtual ::com::sun::star::uno::Type SAL_CALL getElementType( ) throw (::com::sun::star::uno::RuntimeException) +- { return ::getCppuType(reinterpret_cast * >(NULL)); }; ++ { return ::getCppuType(reinterpret_cast * >(0)); }; + }; + } + Property changes on: patch-extensions__source__resource__ResourceIndexAccess.cxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: patch-connectivity__source__drivers__file__FResultSet.cxx =================================================================== --- patch-connectivity__source__drivers__file__FResultSet.cxx (revision 0) +++ patch-connectivity__source__drivers__file__FResultSet.cxx (working copy) @@ -0,0 +1,17 @@ +--- ./connectivity/source/drivers/file/FResultSet.cxx.orig 2012-07-03 07:01:28.000000000 -0400 ++++ ./connectivity/source/drivers/file/FResultSet.cxx 2012-07-18 13:28:45.000000000 -0400 +@@ -152,10 +152,10 @@ + void OResultSet::construct() + { + RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "file", "Ocke.Janssen@sun.com", "OResultSet::construct" ); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_FETCHSIZE), PROPERTY_ID_FETCHSIZE, 0,&m_nFetchSize, ::getCppuType(reinterpret_cast(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_RESULTSETTYPE), PROPERTY_ID_RESULTSETTYPE, PropertyAttribute::READONLY,&m_nResultSetType, ::getCppuType(reinterpret_cast(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_FETCHDIRECTION), PROPERTY_ID_FETCHDIRECTION, 0,&m_nFetchDirection, ::getCppuType(reinterpret_cast(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_RESULTSETCONCURRENCY), PROPERTY_ID_RESULTSETCONCURRENCY,PropertyAttribute::READONLY,&m_nResultSetConcurrency, ::getCppuType(reinterpret_cast(NULL))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_FETCHSIZE), PROPERTY_ID_FETCHSIZE, 0,&m_nFetchSize, ::getCppuType(reinterpret_cast(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_RESULTSETTYPE), PROPERTY_ID_RESULTSETTYPE, PropertyAttribute::READONLY,&m_nResultSetType, ::getCppuType(reinterpret_cast(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_FETCHDIRECTION), PROPERTY_ID_FETCHDIRECTION, 0,&m_nFetchDirection, ::getCppuType(reinterpret_cast(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_RESULTSETCONCURRENCY), PROPERTY_ID_RESULTSETCONCURRENCY,PropertyAttribute::READONLY,&m_nResultSetConcurrency, ::getCppuType(reinterpret_cast(0))); + } + // ------------------------------------------------------------------------- + void OResultSet::disposing(void) Property changes on: patch-connectivity__source__drivers__file__FResultSet.cxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: patch-connectivity__source__commontools__dbexception.cxx =================================================================== --- patch-connectivity__source__commontools__dbexception.cxx (revision 0) +++ patch-connectivity__source__commontools__dbexception.cxx (working copy) @@ -0,0 +1,24 @@ +--- ./connectivity/source/commontools/dbexception.cxx.orig 2012-07-03 07:01:28.000000000 -0400 ++++ connectivity/source/commontools/dbexception.cxx 2012-07-18 13:24:25.000000000 -0400 +@@ -144,7 +144,7 @@ + //------------------------------------------------------------------------------ + SQLExceptionInfo::SQLExceptionInfo(const staruno::Any& _rError) + { +- const staruno::Type& aSQLExceptionType = ::getCppuType(reinterpret_cast< ::com::sun::star::sdbc::SQLException*>(NULL)); ++ const staruno::Type& aSQLExceptionType = ::getCppuType(reinterpret_cast< ::com::sun::star::sdbc::SQLException*>(0)); + sal_Bool bValid = isAssignableFrom(aSQLExceptionType, _rError.getValueType()); + if (bValid) + m_aContent = _rError; +@@ -158,9 +158,9 @@ + { + staruno::Type aContentType = m_aContent.getValueType(); + +- const Type& aSQLExceptionType = ::getCppuType( reinterpret_cast< SQLException* >( NULL ) ); +- const Type& aSQLWarningType = ::getCppuType( reinterpret_cast< SQLWarning* >( NULL ) ); +- const Type& aSQLContextType = ::getCppuType( reinterpret_cast< SQLContext* >( NULL ) ); ++ const Type& aSQLExceptionType = ::getCppuType( reinterpret_cast< SQLException* >( 0 ) ); ++ const Type& aSQLWarningType = ::getCppuType( reinterpret_cast< SQLWarning* >( 0 ) ); ++ const Type& aSQLContextType = ::getCppuType( reinterpret_cast< SQLContext* >( 0 ) ); + + if ( isAssignableFrom( aSQLContextType, m_aContent.getValueType() ) ) + m_eType = SQL_CONTEXT; Property changes on: patch-connectivity__source__commontools__dbexception.cxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: patch-solenv__inc__unxgcc.mk =================================================================== --- patch-solenv__inc__unxgcc.mk (revision 301038) +++ patch-solenv__inc__unxgcc.mk (working copy) @@ -9,15 +9,6 @@ # Flags for disabling exception handling CFLAGS_NO_EXCEPTIONS=-fno-exceptions -@@ -88,7 +88,7 @@ - CFLAGSCXX+=-fvisibility-inlines-hidden - .ENDIF # "$(HAVE_GCC_VISIBILITY_FEATURE)" == "TRUE" - .IF "$(HAVE_CXX0X)" == "TRUE" --CFLAGSCXX+=-std=c++0x -+CFLAGSCXX+=-std=gnu++0x - CFLAGSCXX+=-Wno-deprecated-declarations -Wno-deprecated - .ENDIF # "$(HAVE_CXX0X)" == "TRUE" - @@ -134,8 +134,8 @@ # -Wshadow does not work for C with nested uses of pthread_cleanup_push: CFLAGSWARNBOTH=-Wall -Wextra -Wendif-labels Index: patch-connectivity__source__sdbcx__VTable.cxx =================================================================== --- patch-connectivity__source__sdbcx__VTable.cxx (revision 0) +++ patch-connectivity__source__sdbcx__VTable.cxx (working copy) @@ -0,0 +1,17 @@ +--- ./connectivity/source/sdbcx/VTable.cxx.orig 2012-07-03 07:01:28.000000000 -0400 ++++ ./connectivity/source/sdbcx/VTable.cxx 2012-07-18 13:14:27.000000000 -0400 +@@ -121,10 +121,10 @@ + + sal_Int32 nAttrib = isNew() ? 0 : PropertyAttribute::READONLY; + +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_CATALOGNAME), PROPERTY_ID_CATALOGNAME,nAttrib,&m_CatalogName, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_SCHEMANAME), PROPERTY_ID_SCHEMANAME, nAttrib,&m_SchemaName, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_DESCRIPTION), PROPERTY_ID_DESCRIPTION,nAttrib,&m_Description, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_TYPE), PROPERTY_ID_TYPE, nAttrib,&m_Type, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_CATALOGNAME), PROPERTY_ID_CATALOGNAME,nAttrib,&m_CatalogName, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_SCHEMANAME), PROPERTY_ID_SCHEMANAME, nAttrib,&m_SchemaName, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_DESCRIPTION), PROPERTY_ID_DESCRIPTION,nAttrib,&m_Description, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_TYPE), PROPERTY_ID_TYPE, nAttrib,&m_Type, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); + } + // ----------------------------------------------------------------------------- + void SAL_CALL OTable::acquire() throw() Property changes on: patch-connectivity__source__sdbcx__VTable.cxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: patch-connectivity__source__sdbcx__VKey.cxx =================================================================== --- patch-connectivity__source__sdbcx__VKey.cxx (revision 0) +++ patch-connectivity__source__sdbcx__VKey.cxx (working copy) @@ -0,0 +1,17 @@ +--- ./connectivity/source/sdbcx/VKey.cxx.orig 2012-07-03 07:01:28.000000000 -0400 ++++ ./connectivity/source/sdbcx/VKey.cxx 2012-07-18 13:16:00.000000000 -0400 +@@ -139,10 +139,10 @@ + + sal_Int32 nAttrib = isNew() ? 0 : PropertyAttribute::READONLY; + +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_REFERENCEDTABLE), PROPERTY_ID_REFERENCEDTABLE, nAttrib,&m_aProps->m_ReferencedTable, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_TYPE), PROPERTY_ID_TYPE, nAttrib,&m_aProps->m_Type, ::getCppuType(reinterpret_cast(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_UPDATERULE), PROPERTY_ID_UPDATERULE, nAttrib,&m_aProps->m_UpdateRule, ::getCppuType(reinterpret_cast(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_DELETERULE), PROPERTY_ID_DELETERULE, nAttrib,&m_aProps->m_DeleteRule, ::getCppuType(reinterpret_cast(NULL))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_REFERENCEDTABLE), PROPERTY_ID_REFERENCEDTABLE, nAttrib,&m_aProps->m_ReferencedTable, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_TYPE), PROPERTY_ID_TYPE, nAttrib,&m_aProps->m_Type, ::getCppuType(reinterpret_cast(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_UPDATERULE), PROPERTY_ID_UPDATERULE, nAttrib,&m_aProps->m_UpdateRule, ::getCppuType(reinterpret_cast(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_DELETERULE), PROPERTY_ID_DELETERULE, nAttrib,&m_aProps->m_DeleteRule, ::getCppuType(reinterpret_cast(0))); + } + // ------------------------------------------------------------------------- + void SAL_CALL OKey::disposing() Property changes on: patch-connectivity__source__sdbcx__VKey.cxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: patch-connectivity__source__sdbcx__VColumn.cxx =================================================================== --- patch-connectivity__source__sdbcx__VColumn.cxx (revision 0) +++ patch-connectivity__source__sdbcx__VColumn.cxx (working copy) @@ -0,0 +1,23 @@ +--- ./connectivity/source/sdbcx/VColumn.cxx.orig 2012-07-03 07:01:28.000000000 -0400 ++++ ./connectivity/source/sdbcx/VColumn.cxx 2012-07-18 13:07:09.000000000 -0400 +@@ -166,13 +166,13 @@ + + sal_Int32 nAttrib = isNew() ? 0 : PropertyAttribute::READONLY; + +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_TYPENAME), PROPERTY_ID_TYPENAME, nAttrib,&m_TypeName, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_DESCRIPTION), PROPERTY_ID_DESCRIPTION, nAttrib,&m_Description, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_DEFAULTVALUE), PROPERTY_ID_DEFAULTVALUE, nAttrib,&m_DefaultValue, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_PRECISION), PROPERTY_ID_PRECISION, nAttrib,&m_Precision, ::getCppuType(reinterpret_cast(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_TYPE), PROPERTY_ID_TYPE, nAttrib,&m_Type, ::getCppuType(reinterpret_cast(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_SCALE), PROPERTY_ID_SCALE, nAttrib,&m_Scale, ::getCppuType(reinterpret_cast(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_ISNULLABLE), PROPERTY_ID_ISNULLABLE, nAttrib,&m_IsNullable, ::getCppuType(reinterpret_cast(NULL))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_TYPENAME), PROPERTY_ID_TYPENAME, nAttrib,&m_TypeName, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_DESCRIPTION), PROPERTY_ID_DESCRIPTION, nAttrib,&m_Description, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_DEFAULTVALUE), PROPERTY_ID_DEFAULTVALUE, nAttrib,&m_DefaultValue, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_PRECISION), PROPERTY_ID_PRECISION, nAttrib,&m_Precision, ::getCppuType(reinterpret_cast(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_TYPE), PROPERTY_ID_TYPE, nAttrib,&m_Type, ::getCppuType(reinterpret_cast(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_SCALE), PROPERTY_ID_SCALE, nAttrib,&m_Scale, ::getCppuType(reinterpret_cast(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_ISNULLABLE), PROPERTY_ID_ISNULLABLE, nAttrib,&m_IsNullable, ::getCppuType(reinterpret_cast(0))); + registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_ISAUTOINCREMENT), PROPERTY_ID_ISAUTOINCREMENT, nAttrib,&m_IsAutoIncrement, ::getBooleanCppuType()); + registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_ISROWVERSION), PROPERTY_ID_ISROWVERSION, nAttrib,&m_IsRowVersion, ::getBooleanCppuType()); + registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_ISCURRENCY), PROPERTY_ID_ISCURRENCY, nAttrib,&m_IsCurrency, ::getBooleanCppuType()); Property changes on: patch-connectivity__source__sdbcx__VColumn.cxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: patch-connectivity__source__drivers__file__FStatement.cxx =================================================================== --- patch-connectivity__source__drivers__file__FStatement.cxx (revision 0) +++ patch-connectivity__source__drivers__file__FStatement.cxx (working copy) @@ -0,0 +1,27 @@ +--- ./connectivity/source/drivers/file/FStatement.cxx.orig 2012-07-03 07:01:28.000000000 -0400 ++++ ./connectivity/source/drivers/file/FStatement.cxx 2012-07-18 13:31:40.000000000 -0400 +@@ -93,16 +93,16 @@ + + sal_Int32 nAttrib = 0; + +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_CURSORNAME), PROPERTY_ID_CURSORNAME, nAttrib,&m_aCursorName, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_MAXFIELDSIZE), PROPERTY_ID_MAXFIELDSIZE, nAttrib,&m_nMaxFieldSize, ::getCppuType(reinterpret_cast(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_MAXROWS), PROPERTY_ID_MAXROWS, nAttrib,&m_nMaxRows, ::getCppuType(reinterpret_cast(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_QUERYTIMEOUT), PROPERTY_ID_QUERYTIMEOUT, nAttrib,&m_nQueryTimeOut, ::getCppuType(reinterpret_cast(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_FETCHSIZE), PROPERTY_ID_FETCHSIZE, nAttrib,&m_nFetchSize, ::getCppuType(reinterpret_cast(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_RESULTSETTYPE), PROPERTY_ID_RESULTSETTYPE, nAttrib,&m_nResultSetType, ::getCppuType(reinterpret_cast(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_FETCHDIRECTION), PROPERTY_ID_FETCHDIRECTION, nAttrib,&m_nFetchDirection, ::getCppuType(reinterpret_cast(NULL))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_CURSORNAME), PROPERTY_ID_CURSORNAME, nAttrib,&m_aCursorName, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_MAXFIELDSIZE), PROPERTY_ID_MAXFIELDSIZE, nAttrib,&m_nMaxFieldSize, ::getCppuType(reinterpret_cast(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_MAXROWS), PROPERTY_ID_MAXROWS, nAttrib,&m_nMaxRows, ::getCppuType(reinterpret_cast(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_QUERYTIMEOUT), PROPERTY_ID_QUERYTIMEOUT, nAttrib,&m_nQueryTimeOut, ::getCppuType(reinterpret_cast(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_FETCHSIZE), PROPERTY_ID_FETCHSIZE, nAttrib,&m_nFetchSize, ::getCppuType(reinterpret_cast(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_RESULTSETTYPE), PROPERTY_ID_RESULTSETTYPE, nAttrib,&m_nResultSetType, ::getCppuType(reinterpret_cast(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_FETCHDIRECTION), PROPERTY_ID_FETCHDIRECTION, nAttrib,&m_nFetchDirection, ::getCppuType(reinterpret_cast(0))); + registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_ESCAPEPROCESSING),PROPERTY_ID_ESCAPEPROCESSING, nAttrib,&m_bEscapeProcessing,::getCppuBooleanType()); + +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_RESULTSETCONCURRENCY), PROPERTY_ID_RESULTSETCONCURRENCY, nAttrib,&m_nResultSetConcurrency, ::getCppuType(reinterpret_cast(NULL))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_RESULTSETCONCURRENCY), PROPERTY_ID_RESULTSETCONCURRENCY, nAttrib,&m_nResultSetConcurrency, ::getCppuType(reinterpret_cast(0))); + } + // ----------------------------------------------------------------------------- + OStatement_Base::~OStatement_Base() Property changes on: patch-connectivity__source__drivers__file__FStatement.cxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: patch-connectivity__source__sdbcx__VIndex.cxx =================================================================== --- patch-connectivity__source__sdbcx__VIndex.cxx (revision 0) +++ patch-connectivity__source__sdbcx__VIndex.cxx (working copy) @@ -0,0 +1,11 @@ +--- connectivity/source/sdbcx/VIndex.cxx.orig 2012-07-03 07:01:28.000000000 -0400 ++++ ./connectivity/source/sdbcx/VIndex.cxx 2012-07-18 13:17:23.000000000 -0400 +@@ -142,7 +142,7 @@ + + sal_Int32 nAttrib = isNew() ? 0 : PropertyAttribute::READONLY; + +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_CATALOG), PROPERTY_ID_CATALOG, nAttrib,&m_Catalog, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_CATALOG), PROPERTY_ID_CATALOG, nAttrib,&m_Catalog, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); + registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_ISUNIQUE), PROPERTY_ID_ISUNIQUE, nAttrib,&m_IsUnique, ::getBooleanCppuType()); + registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_ISPRIMARYKEYINDEX),PROPERTY_ID_ISPRIMARYKEYINDEX, nAttrib,&m_IsPrimaryKeyIndex, ::getBooleanCppuType()); + registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_ISCLUSTERED), PROPERTY_ID_ISCLUSTERED, nAttrib,&m_IsClustered, ::getBooleanCppuType()); Property changes on: patch-connectivity__source__sdbcx__VIndex.cxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: patch-connectivity__source__drivers__ado__AKeyColumn.cxx =================================================================== --- patch-connectivity__source__drivers__ado__AKeyColumn.cxx (revision 0) +++ patch-connectivity__source__drivers__ado__AKeyColumn.cxx (working copy) @@ -0,0 +1,11 @@ +--- ./connectivity/source/drivers/ado/AKeyColumn.cxx.orig 2012-07-03 07:01:28.000000000 -0400 ++++ ./connectivity/source/drivers/ado/AKeyColumn.cxx 2012-07-18 14:50:16.000000000 -0400 +@@ -63,7 +63,7 @@ + void OKeyColumn::construct() + { + sal_Int32 nAttrib = isNew() ? 0 : starbeans::PropertyAttribute::READONLY; +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_RELATEDCOLUMN), PROPERTY_ID_RELATEDCOLUMN, nAttrib,&m_ReferencedColumn, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_RELATEDCOLUMN), PROPERTY_ID_RELATEDCOLUMN, nAttrib,&m_ReferencedColumn, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); + } + + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ Property changes on: patch-connectivity__source__drivers__ado__AKeyColumn.cxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: patch-forms__source__inc__property.hxx =================================================================== --- patch-forms__source__inc__property.hxx (revision 0) +++ patch-forms__source__inc__property.hxx (working copy) @@ -0,0 +1,20 @@ +--- ./forms/source/inc/property.hxx.orig 2012-07-03 07:01:28.000000000 -0400 ++++ ./forms/source/inc/property.hxx 2012-07-18 14:18:22.000000000 -0400 +@@ -111,7 +111,7 @@ + + //------------------------------------------------------------------------------ + #define DECL_PROP_IMPL(varname, type) \ +- *pProperties++ = com::sun::star::beans::Property(PROPERTY_##varname, PROPERTY_ID_##varname, ::getCppuType(reinterpret_cast< type* >(NULL)), ++ *pProperties++ = com::sun::star::beans::Property(PROPERTY_##varname, PROPERTY_ID_##varname, ::getCppuType(reinterpret_cast< type* >(0)), + + //------------------------------------------------------------------------------ + #define DECL_BOOL_PROP_IMPL(varname) \ +@@ -119,7 +119,7 @@ + + //------------------------------------------------------------------------------ + #define DECL_IFACE_PROP_IMPL(varname, type) \ +- *pProperties++ = com::sun::star::beans::Property(PROPERTY_##varname, PROPERTY_ID_##varname, ::getCppuType(reinterpret_cast< com::sun::star::uno::Reference< type >* >(NULL)), ++ *pProperties++ = com::sun::star::beans::Property(PROPERTY_##varname, PROPERTY_ID_##varname, ::getCppuType(reinterpret_cast< com::sun::star::uno::Reference< type >* >(0)), + + //------------------------------------------------------------------------------ + #define BEGIN_DESCRIBE_PROPERTIES( count, baseclass ) \ Property changes on: patch-forms__source__inc__property.hxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: patch-solenv__gbuild__platform__unxgcc.mk =================================================================== --- patch-solenv__gbuild__platform__unxgcc.mk (revision 301023) +++ patch-solenv__gbuild__platform__unxgcc.mk (working copy) @@ -12,12 +12,3 @@ ifeq ($(HAVE_GCC_VISIBILITY_FEATURE),TRUE) gb_COMPILERDEFS += \ -@@ -103,7 +103,7 @@ - ifeq ($(HAVE_CXX0X),TRUE) - #Currently, as well as for its own merits, c++11/c++0x mode allows use to use - #a template for SAL_N_ELEMENTS to detect at compiler time its misuse --gb_CXXFLAGS += -std=c++0x -+gb_CXXFLAGS += -std=gnu++0x - - #We have so many std::auto_ptr uses that we need to be able to disable - #warnings for those so that -Werror continues to be useful, seeing as moving Index: patch-dbaccess__source__core__api__RowSet.cxx =================================================================== --- patch-dbaccess__source__core__api__RowSet.cxx (revision 0) +++ patch-dbaccess__source__core__api__RowSet.cxx (working copy) @@ -0,0 +1,92 @@ +--- ./dbaccess/source/core/api/RowSet.cxx.orig 2012-07-03 07:01:28.000000000 -0400 ++++ ./dbaccess/source/core/api/RowSet.cxx 2012-07-18 14:57:33.000000000 -0400 +@@ -180,45 +180,45 @@ + m_aPrematureParamValues.get().resize( 0 ); + + // sdb.RowSet Properties +- registerMayBeVoidProperty(PROPERTY_ACTIVE_CONNECTION,PROPERTY_ID_ACTIVE_CONNECTION, PropertyAttribute::MAYBEVOID|PropertyAttribute::TRANSIENT|PropertyAttribute::BOUND, &m_aActiveConnection, ::getCppuType(reinterpret_cast< Reference< XConnection >* >(NULL))); +- registerProperty(PROPERTY_DATASOURCENAME, PROPERTY_ID_DATASOURCENAME, PropertyAttribute::BOUND, &m_aDataSourceName, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); +- registerProperty(PROPERTY_COMMAND, PROPERTY_ID_COMMAND, PropertyAttribute::BOUND, &m_aCommand, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); +- registerProperty(PROPERTY_COMMAND_TYPE, PROPERTY_ID_COMMAND_TYPE, PropertyAttribute::BOUND, &m_nCommandType, ::getCppuType(reinterpret_cast< sal_Int32*>(NULL))); +- registerProperty(PROPERTY_ACTIVECOMMAND, PROPERTY_ID_ACTIVECOMMAND, nRBT, &m_aActiveCommand, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); ++ registerMayBeVoidProperty(PROPERTY_ACTIVE_CONNECTION,PROPERTY_ID_ACTIVE_CONNECTION, PropertyAttribute::MAYBEVOID|PropertyAttribute::TRANSIENT|PropertyAttribute::BOUND, &m_aActiveConnection, ::getCppuType(reinterpret_cast< Reference< XConnection >* >(0))); ++ registerProperty(PROPERTY_DATASOURCENAME, PROPERTY_ID_DATASOURCENAME, PropertyAttribute::BOUND, &m_aDataSourceName, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); ++ registerProperty(PROPERTY_COMMAND, PROPERTY_ID_COMMAND, PropertyAttribute::BOUND, &m_aCommand, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); ++ registerProperty(PROPERTY_COMMAND_TYPE, PROPERTY_ID_COMMAND_TYPE, PropertyAttribute::BOUND, &m_nCommandType, ::getCppuType(reinterpret_cast< sal_Int32*>(0))); ++ registerProperty(PROPERTY_ACTIVECOMMAND, PROPERTY_ID_ACTIVECOMMAND, nRBT, &m_aActiveCommand, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); + registerProperty(PROPERTY_IGNORERESULT, PROPERTY_ID_IGNORERESULT, PropertyAttribute::BOUND, &m_bIgnoreResult, ::getBooleanCppuType()); +- registerProperty(PROPERTY_FILTER, PROPERTY_ID_FILTER, PropertyAttribute::BOUND, &m_aFilter, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); +- registerProperty(PROPERTY_HAVING_CLAUSE, PROPERTY_ID_HAVING_CLAUSE, PropertyAttribute::BOUND, &m_aHavingClause, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); +- registerProperty(PROPERTY_GROUP_BY, PROPERTY_ID_GROUP_BY, PropertyAttribute::BOUND, &m_aGroupBy, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); ++ registerProperty(PROPERTY_FILTER, PROPERTY_ID_FILTER, PropertyAttribute::BOUND, &m_aFilter, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); ++ registerProperty(PROPERTY_HAVING_CLAUSE, PROPERTY_ID_HAVING_CLAUSE, PropertyAttribute::BOUND, &m_aHavingClause, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); ++ registerProperty(PROPERTY_GROUP_BY, PROPERTY_ID_GROUP_BY, PropertyAttribute::BOUND, &m_aGroupBy, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); + registerProperty(PROPERTY_APPLYFILTER, PROPERTY_ID_APPLYFILTER, PropertyAttribute::BOUND, &m_bApplyFilter, ::getBooleanCppuType()); +- registerProperty(PROPERTY_ORDER, PROPERTY_ID_ORDER, PropertyAttribute::BOUND, &m_aOrder, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); +- registerProperty(PROPERTY_PRIVILEGES, PROPERTY_ID_PRIVILEGES, nRT, &m_nPrivileges, ::getCppuType(reinterpret_cast< sal_Int32*>(NULL))); ++ registerProperty(PROPERTY_ORDER, PROPERTY_ID_ORDER, PropertyAttribute::BOUND, &m_aOrder, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); ++ registerProperty(PROPERTY_PRIVILEGES, PROPERTY_ID_PRIVILEGES, nRT, &m_nPrivileges, ::getCppuType(reinterpret_cast< sal_Int32*>(0))); + registerProperty(PROPERTY_ISMODIFIED, PROPERTY_ID_ISMODIFIED, nBT, &m_bModified, ::getBooleanCppuType()); + registerProperty(PROPERTY_ISNEW, PROPERTY_ID_ISNEW, nRBT, &m_bNew, ::getBooleanCppuType()); +- registerProperty(PROPERTY_SINGLESELECTQUERYCOMPOSER,PROPERTY_ID_SINGLESELECTQUERYCOMPOSER, nRT, &m_xComposer, ::getCppuType(reinterpret_cast< Reference< XSingleSelectQueryComposer >* >(NULL))); ++ registerProperty(PROPERTY_SINGLESELECTQUERYCOMPOSER,PROPERTY_ID_SINGLESELECTQUERYCOMPOSER, nRT, &m_xComposer, ::getCppuType(reinterpret_cast< Reference< XSingleSelectQueryComposer >* >(0))); + + // sdbcx.ResultSet Properties + registerProperty(PROPERTY_ISBOOKMARKABLE, PROPERTY_ID_ISBOOKMARKABLE, nRT, &m_bIsBookmarable, ::getBooleanCppuType()); + registerProperty(PROPERTY_CANUPDATEINSERTEDROWS,PROPERTY_ID_CANUPDATEINSERTEDROWS, nRT, &m_bCanUpdateInsertedRows, ::getBooleanCppuType()); + // sdbc.ResultSet Properties +- registerProperty(PROPERTY_RESULTSETCONCURRENCY, PROPERTY_ID_RESULTSETCONCURRENCY, PropertyAttribute::TRANSIENT, &m_nResultSetConcurrency,::getCppuType(reinterpret_cast< sal_Int32*>(NULL))); +- registerProperty(PROPERTY_RESULTSETTYPE, PROPERTY_ID_RESULTSETTYPE, PropertyAttribute::TRANSIENT, &m_nResultSetType, ::getCppuType(reinterpret_cast< sal_Int32*>(NULL))); +- registerProperty(PROPERTY_FETCHDIRECTION, PROPERTY_ID_FETCHDIRECTION, PropertyAttribute::TRANSIENT, &m_nFetchDirection, ::getCppuType(reinterpret_cast< sal_Int32*>(NULL))); +- registerProperty(PROPERTY_FETCHSIZE, PROPERTY_ID_FETCHSIZE, PropertyAttribute::TRANSIENT, &m_nFetchSize, ::getCppuType(reinterpret_cast< sal_Int32*>(NULL))); ++ registerProperty(PROPERTY_RESULTSETCONCURRENCY, PROPERTY_ID_RESULTSETCONCURRENCY, PropertyAttribute::TRANSIENT, &m_nResultSetConcurrency,::getCppuType(reinterpret_cast< sal_Int32*>(0))); ++ registerProperty(PROPERTY_RESULTSETTYPE, PROPERTY_ID_RESULTSETTYPE, PropertyAttribute::TRANSIENT, &m_nResultSetType, ::getCppuType(reinterpret_cast< sal_Int32*>(0))); ++ registerProperty(PROPERTY_FETCHDIRECTION, PROPERTY_ID_FETCHDIRECTION, PropertyAttribute::TRANSIENT, &m_nFetchDirection, ::getCppuType(reinterpret_cast< sal_Int32*>(0))); ++ registerProperty(PROPERTY_FETCHSIZE, PROPERTY_ID_FETCHSIZE, PropertyAttribute::TRANSIENT, &m_nFetchSize, ::getCppuType(reinterpret_cast< sal_Int32*>(0))); + + // sdbc.RowSet Properties +- registerProperty(PROPERTY_URL, PROPERTY_ID_URL, 0, &m_aURL, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); +- registerProperty(PROPERTY_TRANSACTIONISOLATION, PROPERTY_ID_TRANSACTIONISOLATION, PropertyAttribute::TRANSIENT, &m_nTransactionIsolation,::getCppuType(reinterpret_cast< sal_Int32*>(NULL))); +- registerMayBeVoidProperty(PROPERTY_TYPEMAP, PROPERTY_ID_TYPEMAP, PropertyAttribute::MAYBEVOID|PropertyAttribute::TRANSIENT, &m_aTypeMap, ::getCppuType(reinterpret_cast< Reference< XNameAccess >* >(NULL))); ++ registerProperty(PROPERTY_URL, PROPERTY_ID_URL, 0, &m_aURL, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); ++ registerProperty(PROPERTY_TRANSACTIONISOLATION, PROPERTY_ID_TRANSACTIONISOLATION, PropertyAttribute::TRANSIENT, &m_nTransactionIsolation,::getCppuType(reinterpret_cast< sal_Int32*>(0))); ++ registerMayBeVoidProperty(PROPERTY_TYPEMAP, PROPERTY_ID_TYPEMAP, PropertyAttribute::MAYBEVOID|PropertyAttribute::TRANSIENT, &m_aTypeMap, ::getCppuType(reinterpret_cast< Reference< XNameAccess >* >(0))); + registerProperty(PROPERTY_ESCAPE_PROCESSING,PROPERTY_ID_ESCAPE_PROCESSING, PropertyAttribute::BOUND, &m_bUseEscapeProcessing,::getBooleanCppuType() ); +- registerProperty(PROPERTY_QUERYTIMEOUT, PROPERTY_ID_QUERYTIMEOUT, PropertyAttribute::TRANSIENT, &m_nQueryTimeOut, ::getCppuType(reinterpret_cast< sal_Int32*>(NULL))); +- registerProperty(PROPERTY_MAXFIELDSIZE, PROPERTY_ID_MAXFIELDSIZE, PropertyAttribute::TRANSIENT, &m_nMaxFieldSize, ::getCppuType(reinterpret_cast< sal_Int32*>(NULL))); +- registerProperty(PROPERTY_MAXROWS, PROPERTY_ID_MAXROWS, 0, &m_nMaxRows, ::getCppuType(reinterpret_cast< sal_Int32*>(NULL)) ); +- registerProperty(PROPERTY_USER, PROPERTY_ID_USER, PropertyAttribute::TRANSIENT, &m_aUser, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); +- registerProperty(PROPERTY_PASSWORD, PROPERTY_ID_PASSWORD, PropertyAttribute::TRANSIENT, &m_aPassword, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); +- +- registerProperty(PROPERTY_UPDATE_CATALOGNAME, PROPERTY_ID_UPDATE_CATALOGNAME, PropertyAttribute::BOUND, &m_aUpdateCatalogName, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); +- registerProperty(PROPERTY_UPDATE_SCHEMANAME, PROPERTY_ID_UPDATE_SCHEMANAME, PropertyAttribute::BOUND, &m_aUpdateSchemaName, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); +- registerProperty(PROPERTY_UPDATE_TABLENAME, PROPERTY_ID_UPDATE_TABLENAME, PropertyAttribute::BOUND, &m_aUpdateTableName, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); ++ registerProperty(PROPERTY_QUERYTIMEOUT, PROPERTY_ID_QUERYTIMEOUT, PropertyAttribute::TRANSIENT, &m_nQueryTimeOut, ::getCppuType(reinterpret_cast< sal_Int32*>(0))); ++ registerProperty(PROPERTY_MAXFIELDSIZE, PROPERTY_ID_MAXFIELDSIZE, PropertyAttribute::TRANSIENT, &m_nMaxFieldSize, ::getCppuType(reinterpret_cast< sal_Int32*>(0))); ++ registerProperty(PROPERTY_MAXROWS, PROPERTY_ID_MAXROWS, 0, &m_nMaxRows, ::getCppuType(reinterpret_cast< sal_Int32*>(0)) ); ++ registerProperty(PROPERTY_USER, PROPERTY_ID_USER, PropertyAttribute::TRANSIENT, &m_aUser, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); ++ registerProperty(PROPERTY_PASSWORD, PROPERTY_ID_PASSWORD, PropertyAttribute::TRANSIENT, &m_aPassword, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); ++ ++ registerProperty(PROPERTY_UPDATE_CATALOGNAME, PROPERTY_ID_UPDATE_CATALOGNAME, PropertyAttribute::BOUND, &m_aUpdateCatalogName, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); ++ registerProperty(PROPERTY_UPDATE_SCHEMANAME, PROPERTY_ID_UPDATE_SCHEMANAME, PropertyAttribute::BOUND, &m_aUpdateSchemaName, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); ++ registerProperty(PROPERTY_UPDATE_TABLENAME, PROPERTY_ID_UPDATE_TABLENAME, PropertyAttribute::BOUND, &m_aUpdateTableName, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); + + // ??? + registerProperty(PROPERTY_CHANGE_NOTIFICATION_ENABLED, PROPERTY_ID_PROPCHANGE_NOTIFY, PropertyAttribute::BOUND, &m_bPropChangeNotifyEnabled, ::getBooleanCppuType()); +@@ -2808,11 +2808,11 @@ + sal_Int32 nRT = PropertyAttribute::READONLY | PropertyAttribute::TRANSIENT; + + // sdb.RowSet Properties +- registerMayBeVoidProperty(PROPERTY_ACTIVE_CONNECTION,PROPERTY_ID_ACTIVE_CONNECTION, PropertyAttribute::MAYBEVOID|PropertyAttribute::READONLY, &rParent.m_aActiveConnection, ::getCppuType(reinterpret_cast< Reference< XConnection >* >(NULL))); +- registerProperty(PROPERTY_RESULTSETCONCURRENCY, PROPERTY_ID_RESULTSETCONCURRENCY, PropertyAttribute::READONLY, &m_nResultSetConcurrency,::getCppuType(reinterpret_cast< sal_Int32*>(NULL))); +- registerProperty(PROPERTY_RESULTSETTYPE, PROPERTY_ID_RESULTSETTYPE, PropertyAttribute::READONLY, &m_nResultSetType, ::getCppuType(reinterpret_cast< sal_Int32*>(NULL))); +- registerProperty(PROPERTY_FETCHDIRECTION, PROPERTY_ID_FETCHDIRECTION, PropertyAttribute::TRANSIENT, &m_nFetchDirection, ::getCppuType(reinterpret_cast< sal_Int32*>(NULL))); +- registerProperty(PROPERTY_FETCHSIZE, PROPERTY_ID_FETCHSIZE, PropertyAttribute::TRANSIENT, &m_nFetchSize, ::getCppuType(reinterpret_cast< sal_Int32*>(NULL))); ++ registerMayBeVoidProperty(PROPERTY_ACTIVE_CONNECTION,PROPERTY_ID_ACTIVE_CONNECTION, PropertyAttribute::MAYBEVOID|PropertyAttribute::READONLY, &rParent.m_aActiveConnection, ::getCppuType(reinterpret_cast< Reference< XConnection >* >(0))); ++ registerProperty(PROPERTY_RESULTSETCONCURRENCY, PROPERTY_ID_RESULTSETCONCURRENCY, PropertyAttribute::READONLY, &m_nResultSetConcurrency,::getCppuType(reinterpret_cast< sal_Int32*>(0))); ++ registerProperty(PROPERTY_RESULTSETTYPE, PROPERTY_ID_RESULTSETTYPE, PropertyAttribute::READONLY, &m_nResultSetType, ::getCppuType(reinterpret_cast< sal_Int32*>(0))); ++ registerProperty(PROPERTY_FETCHDIRECTION, PROPERTY_ID_FETCHDIRECTION, PropertyAttribute::TRANSIENT, &m_nFetchDirection, ::getCppuType(reinterpret_cast< sal_Int32*>(0))); ++ registerProperty(PROPERTY_FETCHSIZE, PROPERTY_ID_FETCHSIZE, PropertyAttribute::TRANSIENT, &m_nFetchSize, ::getCppuType(reinterpret_cast< sal_Int32*>(0))); + registerProperty(PROPERTY_ISBOOKMARKABLE, PROPERTY_ID_ISBOOKMARKABLE, nRT, &m_bIsBookmarable, ::getBooleanCppuType()); + } + Property changes on: patch-dbaccess__source__core__api__RowSet.cxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: patch-mysqlc__source__mysqlc_propertyids.hxx =================================================================== --- patch-mysqlc__source__mysqlc_propertyids.hxx (revision 0) +++ patch-mysqlc__source__mysqlc_propertyids.hxx (working copy) @@ -0,0 +1,11 @@ +--- ./mysqlc/source/mysqlc_propertyids.hxx.orig 2012-07-03 07:01:28.000000000 -0400 ++++ ./mysqlc/source/mysqlc_propertyids.hxx 2012-07-18 15:00:02.000000000 -0400 +@@ -119,7 +119,7 @@ + + //------------------------------------------------------------------------------ + #define DECL_PROP1IMPL(varname, type) \ +-pProperties[nPos++] = Property(OPropertyMap::getPropMap().getNameByIndex(PROPERTY_ID_##varname), PROPERTY_ID_##varname, ::getCppuType(reinterpret_cast< type*>(NULL)), ++pProperties[nPos++] = Property(OPropertyMap::getPropMap().getNameByIndex(PROPERTY_ID_##varname), PROPERTY_ID_##varname, ::getCppuType(reinterpret_cast< type*>(0)), + //------------------------------------------------------------------------------ + #define DECL_PROP0(varname, type) \ + DECL_PROP1IMPL(varname, type) 0) Property changes on: patch-mysqlc__source__mysqlc_propertyids.hxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: patch-connectivity__source__commontools__FDatabaseMetaDataResultSet.cxx =================================================================== --- patch-connectivity__source__commontools__FDatabaseMetaDataResultSet.cxx (revision 0) +++ patch-connectivity__source__commontools__FDatabaseMetaDataResultSet.cxx (working copy) @@ -0,0 +1,17 @@ +--- ./connectivity/source/commontools/FDatabaseMetaDataResultSet.cxx.orig 2012-07-03 07:01:28.000000000 -0400 ++++ ./connectivity/source/commontools/FDatabaseMetaDataResultSet.cxx 2012-07-18 13:26:19.000000000 -0400 +@@ -91,10 +91,10 @@ + // ------------------------------------------------------------------------- + void ODatabaseMetaDataResultSet::construct() + { +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_FETCHSIZE), PROPERTY_ID_FETCHSIZE, 0,&m_nFetchSize, ::getCppuType(reinterpret_cast(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_RESULTSETTYPE), PROPERTY_ID_RESULTSETTYPE, PropertyAttribute::READONLY,&m_nResultSetType, ::getCppuType(reinterpret_cast(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_FETCHDIRECTION), PROPERTY_ID_FETCHDIRECTION, 0, &m_nFetchDirection, ::getCppuType(reinterpret_cast(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_RESULTSETCONCURRENCY), PROPERTY_ID_RESULTSETCONCURRENCY, PropertyAttribute::READONLY,&m_nResultSetConcurrency, ::getCppuType(reinterpret_cast(NULL))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_FETCHSIZE), PROPERTY_ID_FETCHSIZE, 0,&m_nFetchSize, ::getCppuType(reinterpret_cast(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_RESULTSETTYPE), PROPERTY_ID_RESULTSETTYPE, PropertyAttribute::READONLY,&m_nResultSetType, ::getCppuType(reinterpret_cast(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_FETCHDIRECTION), PROPERTY_ID_FETCHDIRECTION, 0, &m_nFetchDirection, ::getCppuType(reinterpret_cast(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_RESULTSETCONCURRENCY), PROPERTY_ID_RESULTSETCONCURRENCY, PropertyAttribute::READONLY,&m_nResultSetConcurrency, ::getCppuType(reinterpret_cast(0))); + } + // ----------------------------------------------------------------------------- + void ODatabaseMetaDataResultSet::setType(MetaDataResultSetType _eType) Property changes on: patch-connectivity__source__commontools__FDatabaseMetaDataResultSet.cxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: patch-connectivity__source__sdbcx__VKeyColumn.cxx =================================================================== --- patch-connectivity__source__sdbcx__VKeyColumn.cxx (revision 0) +++ patch-connectivity__source__sdbcx__VKeyColumn.cxx (working copy) @@ -0,0 +1,11 @@ +--- ./connectivity/source/sdbcx/VKeyColumn.cxx.orig 2012-07-03 07:01:28.000000000 -0400 ++++ ./connectivity/source/sdbcx/VKeyColumn.cxx 2012-07-18 13:11:37.000000000 -0400 +@@ -115,7 +115,7 @@ + void OKeyColumn::construct() + { + sal_Int32 nAttrib = isNew() ? 0 : PropertyAttribute::READONLY; +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_RELATEDCOLUMN), PROPERTY_ID_RELATEDCOLUMN, nAttrib,&m_ReferencedColumn, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_RELATEDCOLUMN), PROPERTY_ID_RELATEDCOLUMN, nAttrib,&m_ReferencedColumn, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); + } + // ----------------------------------------------------------------------------- + Property changes on: patch-connectivity__source__sdbcx__VKeyColumn.cxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: patch-testtools__source__bridgetest__makefile.mk =================================================================== --- patch-testtools__source__bridgetest__makefile.mk (revision 301023) +++ patch-testtools__source__bridgetest__makefile.mk (working copy) @@ -1,11 +1,29 @@ ---- ./testtools/source/bridgetest/makefile.mk.orig 2012-04-17 11:41:16.000000000 +0200 -+++ ./testtools/source/bridgetest/makefile.mk 2012-04-17 11:41:53.000000000 +0200 -@@ -56,6 +56,8 @@ - my_components += testComponent - .END +--- ./testtools/source/bridgetest/makefile.mk.orig 2012-07-03 07:01:28.000000000 -0400 ++++ ./testtools/source/bridgetest/makefile.mk 2012-07-18 12:47:31.000000000 -0400 +@@ -145,16 +145,16 @@ -+CFLAGSCXX += -fPIC -+ - .IF "$(GUI)"=="WNT" - .IF "$(compcheck)" != "" - CFLAGSCXX += -DCOMPCHECK + runtest : $(DLLDEST)$/uno_types.rdb $(DLLDEST)$/uno_services.rdb makefile.mk \ + $(SHL1TARGETN) $(SHL2TARGETN) $(SHL3TARGETN) +-.IF "$(CROSS_COMPILING)"!="YES" +-.IF "$(COM)$(OS)$(CPU)" == "GCCMACOSXP" +- @echo "Mac OSX PPC GCC fails this test!, likely broken UNO bridge. Fix me." +-.ELSE +- cd $(DLLDEST) && $(AUGMENT_LIBRARY_PATH) $(SOLARBINDIR)/uno \ +- -ro uno_services.rdb -ro uno_types.rdb \ +- -s com.sun.star.test.bridge.BridgeTest -- \ +- com.sun.star.test.bridge.CppTestObject +-.ENDIF +-.ENDIF ++#.IF "$(CROSS_COMPILING)"!="YES" ++#.IF "$(COM)$(OS)$(CPU)" == "GCCMACOSXP" ++# @echo "Mac OSX PPC GCC fails this test!, likely broken UNO bridge. Fix me." ++#.ELSE ++# cd $(DLLDEST) && $(AUGMENT_LIBRARY_PATH) $(SOLARBINDIR)/uno \ ++# -ro uno_services.rdb -ro uno_types.rdb \ ++# -s com.sun.star.test.bridge.BridgeTest -- \ ++# com.sun.star.test.bridge.CppTestObject ++#.ENDIF ++#.ENDIF + + $(DLLDEST)/services.rdb : + $(COPY) $(SOLARXMLDIR)/ure/services.rdb $@ Index: patch-connectivity__source__inc__propertyids.hxx =================================================================== --- patch-connectivity__source__inc__propertyids.hxx (revision 0) +++ patch-connectivity__source__inc__propertyids.hxx (working copy) @@ -0,0 +1,11 @@ +--- ./connectivity/source/inc/propertyids.hxx.orig 2012-07-03 07:01:28.000000000 -0400 ++++ ./connectivity/source/inc/propertyids.hxx 2012-07-18 13:36:46.000000000 -0400 +@@ -75,7 +75,7 @@ + + //------------------------------------------------------------------------------ + #define DECL_PROP1IMPL(varname, type) \ +-pProperties[nPos++] = ::com::sun::star::beans::Property(::connectivity::OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_##varname), PROPERTY_ID_##varname, ::getCppuType(reinterpret_cast< type*>(NULL)), ++pProperties[nPos++] = ::com::sun::star::beans::Property(::connectivity::OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_##varname), PROPERTY_ID_##varname, ::getCppuType(reinterpret_cast< type*>(0)), + //------------------------------------------------------------------------------ + #define DECL_PROP0(varname, type) \ + DECL_PROP1IMPL(varname, type) 0) Property changes on: patch-connectivity__source__inc__propertyids.hxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: patch-connectivity__source__drivers__mysql__YUser.cxx =================================================================== --- patch-connectivity__source__drivers__mysql__YUser.cxx (revision 0) +++ patch-connectivity__source__drivers__mysql__YUser.cxx (working copy) @@ -0,0 +1,11 @@ +--- ./connectivity/source/drivers/mysql/YUser.cxx.orig 2012-07-03 07:01:28.000000000 -0400 ++++ ./connectivity/source/drivers/mysql/YUser.cxx 2012-07-18 13:34:01.000000000 -0400 +@@ -71,7 +71,7 @@ + typedef connectivity::sdbcx::OUser OUser_TYPEDEF; + void OUserExtend::construct() + { +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_PASSWORD), PROPERTY_ID_PASSWORD,0,&m_Password,::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_PASSWORD), PROPERTY_ID_PASSWORD,0,&m_Password,::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); + } + // ----------------------------------------------------------------------------- + cppu::IPropertyArrayHelper* OUserExtend::createArrayHelper() const Property changes on: patch-connectivity__source__drivers__mysql__YUser.cxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: patch-extensions__source__resource__ResourceIndexAccess.hxx =================================================================== --- patch-extensions__source__resource__ResourceIndexAccess.hxx (revision 0) +++ patch-extensions__source__resource__ResourceIndexAccess.hxx (working copy) @@ -0,0 +1,11 @@ +--- ./extensions/source/resource/ResourceIndexAccess.hxx.orig 2012-07-03 07:01:28.000000000 -0400 ++++ ./extensions/source/resource/ResourceIndexAccess.hxx 2012-07-18 15:17:25.000000000 -0400 +@@ -58,7 +58,7 @@ + virtual ::sal_Bool SAL_CALL hasByName( const ::rtl::OUString& aName ) throw (::com::sun::star::uno::RuntimeException); + // XElementAccess + virtual ::com::sun::star::uno::Type SAL_CALL getElementType( ) throw (::com::sun::star::uno::RuntimeException) +- { return ::getCppuType(reinterpret_cast< ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface>*>(NULL)); }; ++ { return ::getCppuType(reinterpret_cast< ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface>*>(0)); }; + virtual ::sal_Bool SAL_CALL hasElements( ) throw (::com::sun::star::uno::RuntimeException) + { return static_cast(m_pResMgr.get()); }; + Property changes on: patch-extensions__source__resource__ResourceIndexAccess.hxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: patch-dbaccess__source__ui__browser__sbagrid.cxx =================================================================== --- patch-dbaccess__source__ui__browser__sbagrid.cxx (revision 0) +++ patch-dbaccess__source__ui__browser__sbagrid.cxx (working copy) @@ -0,0 +1,11 @@ +--- ./dbaccess/source/ui/browser/sbagrid.cxx.orig 2012-07-03 07:01:28.000000000 -0400 ++++ ./dbaccess/source/ui/browser/sbagrid.cxx 2012-07-18 14:58:46.000000000 -0400 +@@ -602,7 +602,7 @@ + Sequence< Type > aTypes = FmXGridPeer::getTypes(); + sal_Int32 nOldLen = aTypes.getLength(); + aTypes.realloc(nOldLen + 1); +- aTypes.getArray()[nOldLen] = ::getCppuType( reinterpret_cast< Reference< ::com::sun::star::frame::XDispatch >* >(NULL) ); ++ aTypes.getArray()[nOldLen] = ::getCppuType( reinterpret_cast< Reference< ::com::sun::star::frame::XDispatch >* >(0) ); + + return aTypes; + } Property changes on: patch-dbaccess__source__ui__browser__sbagrid.cxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: patch-connectivity__source__parse__PColumn.cxx =================================================================== --- patch-connectivity__source__parse__PColumn.cxx (revision 0) +++ patch-connectivity__source__parse__PColumn.cxx (working copy) @@ -0,0 +1,35 @@ +--- ./connectivity/source/parse/PColumn.cxx.orig 2012-07-03 07:01:28.000000000 -0400 ++++ ./connectivity/source/parse/PColumn.cxx 2012-07-18 17:07:31.000000000 -0400 +@@ -176,13 +176,13 @@ + // ------------------------------------------------------------------------- + void OParseColumn::construct() + { +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_FUNCTION), PROPERTY_ID_FUNCTION, 0, &m_bFunction, ::getCppuType(reinterpret_cast< sal_Bool*>(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_AGGREGATEFUNCTION), PROPERTY_ID_AGGREGATEFUNCTION, 0, &m_bAggregateFunction, ::getCppuType(reinterpret_cast< sal_Bool*>(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_TABLENAME), PROPERTY_ID_TABLENAME, 0, &m_aTableName, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_REALNAME), PROPERTY_ID_REALNAME, 0, &m_aRealName, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_DBASEPRECISIONCHANGED), PROPERTY_ID_DBASEPRECISIONCHANGED, 0, &m_bDbasePrecisionChanged, ::getCppuType(reinterpret_cast(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_ISSEARCHABLE), PROPERTY_ID_ISSEARCHABLE, 0, &m_bIsSearchable, ::getCppuType(reinterpret_cast< sal_Bool*>(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_LABEL), PROPERTY_ID_LABEL, 0, &m_sLabel, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_FUNCTION), PROPERTY_ID_FUNCTION, 0, &m_bFunction, ::getCppuType(reinterpret_cast< sal_Bool*>(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_AGGREGATEFUNCTION), PROPERTY_ID_AGGREGATEFUNCTION, 0, &m_bAggregateFunction, ::getCppuType(reinterpret_cast< sal_Bool*>(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_TABLENAME), PROPERTY_ID_TABLENAME, 0, &m_aTableName, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_REALNAME), PROPERTY_ID_REALNAME, 0, &m_aRealName, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_DBASEPRECISIONCHANGED), PROPERTY_ID_DBASEPRECISIONCHANGED, 0, &m_bDbasePrecisionChanged, ::getCppuType(reinterpret_cast(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_ISSEARCHABLE), PROPERTY_ID_ISSEARCHABLE, 0, &m_bIsSearchable, ::getCppuType(reinterpret_cast< sal_Bool*>(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_LABEL), PROPERTY_ID_LABEL, 0, &m_sLabel, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); + } + // ----------------------------------------------------------------------------- + ::cppu::IPropertyArrayHelper* OParseColumn::createArrayHelper() const +@@ -268,9 +268,9 @@ + void OOrderColumn::construct() + { + registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_ISASCENDING), PROPERTY_ID_ISASCENDING, +- PropertyAttribute::READONLY, const_cast< sal_Bool* >( &m_bAscending ), ::getCppuType( reinterpret_cast< sal_Bool* >( NULL ) ) ); ++ PropertyAttribute::READONLY, const_cast< sal_Bool* >( &m_bAscending ), ::getCppuType( reinterpret_cast< sal_Bool* >( 0 ) ) ); + registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_TABLENAME), PROPERTY_ID_TABLENAME, +- PropertyAttribute::READONLY, const_cast< ::rtl::OUString* >( &m_sTableName ), ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); ++ PropertyAttribute::READONLY, const_cast< ::rtl::OUString* >( &m_sTableName ), ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); + } + // ----------------------------------------------------------------------------- + ::cppu::IPropertyArrayHelper* OOrderColumn::createArrayHelper() const Property changes on: patch-connectivity__source__parse__PColumn.cxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: patch-dbaccess__source__core__api__TableDeco.cxx =================================================================== --- patch-dbaccess__source__core__api__TableDeco.cxx (revision 0) +++ patch-dbaccess__source__core__api__TableDeco.cxx (working copy) @@ -0,0 +1,11 @@ +--- ./dbaccess/source/core/api/TableDeco.cxx.orig 2012-07-03 07:01:28.000000000 -0400 ++++ ./dbaccess/source/core/api/TableDeco.cxx 2012-07-18 14:52:59.000000000 -0400 +@@ -172,7 +172,7 @@ + { + Any aValue; + getFastPropertyValue(aValue,nHandle); +- bRet = ::comphelper::tryPropertyValue(rConvertedValue,rOldValue,rValue,aValue,::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); ++ bRet = ::comphelper::tryPropertyValue(rConvertedValue,rOldValue,rValue,aValue,::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); + } + break; // we assume that it works + } Property changes on: patch-dbaccess__source__core__api__TableDeco.cxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: patch-forms__source__component__ListBox.cxx =================================================================== --- patch-forms__source__component__ListBox.cxx (revision 0) +++ patch-forms__source__component__ListBox.cxx (working copy) @@ -0,0 +1,29 @@ +--- ./forms/source/component/ListBox.cxx.orig 2012-07-03 07:01:28.000000000 -0400 ++++ ./forms/source/component/ListBox.cxx 2012-07-18 14:39:02.000000000 -0400 +@@ -304,7 +304,7 @@ + break; + + case PROPERTY_ID_LISTSOURCETYPE : +- DBG_ASSERT(_rValue.getValueType().equals(::getCppuType(reinterpret_cast(NULL))), ++ DBG_ASSERT(_rValue.getValueType().equals(::getCppuType(reinterpret_cast(0))), + "OComboBoxModel::setFastPropertyValue_NoBroadcast : invalid type !" ); + _rValue >>= m_eListSourceType; + break; +@@ -343,7 +343,7 @@ + throw PropertyVetoException(); + + case PROPERTY_ID_DEFAULT_SELECT_SEQ : +- DBG_ASSERT(_rValue.getValueType().equals(::getCppuType(reinterpret_cast< Sequence*>(NULL))), ++ DBG_ASSERT(_rValue.getValueType().equals(::getCppuType(reinterpret_cast< Sequence*>(0))), + "OListBoxModel::setFastPropertyValue_NoBroadcast : invalid type !" ); + _rValue >>= m_aDefaultSelectSeq; + +@@ -378,7 +378,7 @@ + switch (_nHandle) + { + case PROPERTY_ID_BOUNDCOLUMN : +- bModified = tryPropertyValue(_rConvertedValue, _rOldValue, _rValue, m_aBoundColumn, ::getCppuType(reinterpret_cast(NULL))); ++ bModified = tryPropertyValue(_rConvertedValue, _rOldValue, _rValue, m_aBoundColumn, ::getCppuType(reinterpret_cast(0))); + break; + + case PROPERTY_ID_LISTSOURCETYPE: Property changes on: patch-forms__source__component__ListBox.cxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: patch-connectivity__source__drivers__hsqldb__HUser.cxx =================================================================== --- patch-connectivity__source__drivers__hsqldb__HUser.cxx (revision 0) +++ patch-connectivity__source__drivers__hsqldb__HUser.cxx (working copy) @@ -0,0 +1,11 @@ +--- ./connectivity/source/drivers/hsqldb/HUser.cxx.orig 2012-07-03 07:01:28.000000000 -0400 ++++ ./connectivity/source/drivers/hsqldb/HUser.cxx 2012-07-18 14:47:11.000000000 -0400 +@@ -71,7 +71,7 @@ + typedef connectivity::sdbcx::OUser OUser_TYPEDEF; + void OUserExtend::construct() + { +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_PASSWORD), PROPERTY_ID_PASSWORD,0,&m_Password,::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_PASSWORD), PROPERTY_ID_PASSWORD,0,&m_Password,::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); + } + // ----------------------------------------------------------------------------- + cppu::IPropertyArrayHelper* OUserExtend::createArrayHelper() const Property changes on: patch-connectivity__source__drivers__hsqldb__HUser.cxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: patch-connectivity__source__sdbcx__VView.cxx =================================================================== --- patch-connectivity__source__sdbcx__VView.cxx (revision 0) +++ patch-connectivity__source__sdbcx__VView.cxx (working copy) @@ -0,0 +1,17 @@ +--- connectivity/source/sdbcx/VView.cxx.orig 2012-07-03 07:01:28.000000000 -0400 ++++ ./connectivity/source/sdbcx/VView.cxx 2012-07-18 13:21:10.000000000 -0400 +@@ -78,10 +78,10 @@ + + sal_Int32 nAttrib = isNew() ? 0 : PropertyAttribute::READONLY; + +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_CATALOGNAME), PROPERTY_ID_CATALOGNAME,nAttrib,&m_CatalogName, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_SCHEMANAME), PROPERTY_ID_SCHEMANAME, nAttrib,&m_SchemaName, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_COMMAND), PROPERTY_ID_COMMAND, nAttrib,&m_Command, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_CHECKOPTION), PROPERTY_ID_CHECKOPTION,nAttrib,&m_CheckOption, ::getCppuType(reinterpret_cast< sal_Int32*>(NULL))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_CATALOGNAME), PROPERTY_ID_CATALOGNAME,nAttrib,&m_CatalogName, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_SCHEMANAME), PROPERTY_ID_SCHEMANAME, nAttrib,&m_SchemaName, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_COMMAND), PROPERTY_ID_COMMAND, nAttrib,&m_Command, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_CHECKOPTION), PROPERTY_ID_CHECKOPTION,nAttrib,&m_CheckOption, ::getCppuType(reinterpret_cast< sal_Int32*>(0))); + } + // ------------------------------------------------------------------------- + void OView::disposing(void) Property changes on: patch-connectivity__source__sdbcx__VView.cxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: patch-connectivity__source__sdbcx__VCatalog.cxx =================================================================== --- patch-connectivity__source__sdbcx__VCatalog.cxx (revision 0) +++ patch-connectivity__source__sdbcx__VCatalog.cxx (working copy) @@ -0,0 +1,11 @@ +--- connectivity/source/sdbcx/VCatalog.cxx.orig 2012-07-03 07:01:28.000000000 -0400 ++++ ./connectivity/source/sdbcx/VCatalog.cxx 2012-07-18 13:18:57.000000000 -0400 +@@ -230,7 +230,7 @@ + void ODescriptor::construct() + { + sal_Int32 nAttrib = isNew() ? 0 : ::com::sun::star::beans::PropertyAttribute::READONLY; +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_NAME), PROPERTY_ID_NAME ,nAttrib,&m_Name,::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_NAME), PROPERTY_ID_NAME ,nAttrib,&m_Name,::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); + } + // ------------------------------------------------------------------------- + ODescriptor::~ODescriptor() Property changes on: patch-connectivity__source__sdbcx__VCatalog.cxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: patch-reportdesign__source__ui__report__ReportController.cxx =================================================================== --- patch-reportdesign__source__ui__report__ReportController.cxx (revision 0) +++ patch-reportdesign__source__ui__report__ReportController.cxx (working copy) @@ -0,0 +1,11 @@ +--- ./reportdesign/source/ui/report/ReportController.cxx.orig 2012-07-03 07:01:28.000000000 -0400 ++++ ./reportdesign/source/ui/report/ReportController.cxx 2012-07-18 15:01:02.000000000 -0400 +@@ -325,7 +325,7 @@ + + m_sMode = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("normal")); + DBG_CTOR( rpt_OReportController,NULL); +- registerProperty(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ZoomValue")),PROPERTY_ID_ZOOMVALUE,beans::PropertyAttribute::BOUND| beans::PropertyAttribute::TRANSIENT,&m_nZoomValue,::getCppuType(reinterpret_cast< sal_Int16*>(NULL))); ++ registerProperty(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ZoomValue")),PROPERTY_ID_ZOOMVALUE,beans::PropertyAttribute::BOUND| beans::PropertyAttribute::TRANSIENT,&m_nZoomValue,::getCppuType(reinterpret_cast< sal_Int16*>(0))); + + } + // ----------------------------------------------------------------------------- Property changes on: patch-reportdesign__source__ui__report__ReportController.cxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: patch-connectivity__source__drivers__ado__AUser.cxx =================================================================== --- patch-connectivity__source__drivers__ado__AUser.cxx (revision 0) +++ patch-connectivity__source__drivers__ado__AUser.cxx (working copy) @@ -0,0 +1,11 @@ +--- ./connectivity/source/drivers/ado/AUser.cxx.orig 2012-07-03 07:01:28.000000000 -0400 ++++ ./connectivity/source/drivers/ado/AUser.cxx 2012-07-18 14:51:51.000000000 -0400 +@@ -145,7 +145,7 @@ + void OUserExtend::construct() + { + OUser_TYPEDEF::construct(); +- registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_PASSWORD), PROPERTY_ID_PASSWORD,0,&m_Password,::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); ++ registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_PASSWORD), PROPERTY_ID_PASSWORD,0,&m_Password,::getCppuType(reinterpret_cast< ::rtl::OUString*>(0))); + } + // ----------------------------------------------------------------------------- + cppu::IPropertyArrayHelper* OUserExtend::createArrayHelper() const Property changes on: patch-connectivity__source__drivers__ado__AUser.cxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: patch-forms__source__component__ComboBox.cxx =================================================================== --- patch-forms__source__component__ComboBox.cxx (revision 0) +++ patch-forms__source__component__ComboBox.cxx (working copy) @@ -0,0 +1,11 @@ +--- ./forms/source/component/ComboBox.cxx.orig 2012-07-03 07:01:28.000000000 -0400 ++++ ./forms/source/component/ComboBox.cxx 2012-07-18 14:41:05.000000000 -0400 +@@ -227,7 +227,7 @@ + switch (_nHandle) + { + case PROPERTY_ID_LISTSOURCETYPE : +- DBG_ASSERT(_rValue.getValueType().equals(::getCppuType(reinterpret_cast(NULL))), ++ DBG_ASSERT(_rValue.getValueType().equals(::getCppuType(reinterpret_cast(0))), + "OComboBoxModel::setFastPropertyValue_NoBroadcast : invalid type !" ); + _rValue >>= m_eListSourceType; + break; Property changes on: patch-forms__source__component__ComboBox.cxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property