diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2011-12-23 18:41:52 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-01-02 15:33:14 +0100 |
commit | dee53a32a9feba2021782db5762b5a9a034efae4 (patch) | |
tree | 8f627e5b574298bbe0cd9de6272b659bcbbd62a0 /forms/source/component/Grid.cxx | |
parent | 8907d159378b518a769e9f8c4f67290ec588a77d (diff) |
Temporary hack around cppu_detail_getCppuType variants violating ODR.
Which causes cppuhelper to pick wrong variant from other library, now that its own
symbols are no longer reduced to private on Mac OS X. As a temporary hack, emit
cppu_detail_getCppuType for the relevant types always as fully comprehensive; should
be revisited when improving types.rdb format (routinely generating C++ information
for certain UNO types into a dedicated library?). Requires a fix to xmlreader and
a fix to forms that looks like a Mac OS X GCC bug.
Diffstat (limited to 'forms/source/component/Grid.cxx')
-rw-r--r-- | forms/source/component/Grid.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/forms/source/component/Grid.cxx b/forms/source/component/Grid.cxx index f268c2cd71a7..01e0c0d2166a 100644 --- a/forms/source/component/Grid.cxx +++ b/forms/source/component/Grid.cxx @@ -377,7 +377,7 @@ void OGridControlModel::removeSelectionChangeListener(const Reference< XSelectio Reference<XPropertySet> SAL_CALL OGridControlModel::createColumn(const ::rtl::OUString& ColumnType) throw ( :: com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException) { const Sequence< ::rtl::OUString >& rColumnTypes = frm::getColumnTypes(); - return createColumn( detail::findPos( ColumnType, rColumnTypes ) ); + return createColumn( ::detail::findPos( ColumnType, rColumnTypes ) ); } //------------------------------------------------------------------------------ |