Grid.cxx (24acc546) | Grid.cxx (bd656f79) |
---|---|
1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance --- 360 unchanged lines hidden (view full) --- 369 m_aSelectListeners.removeInterface(_rxListener); 370} 371 372// XGridColumnFactory 373//------------------------------------------------------------------------------ 374Reference<XPropertySet> SAL_CALL OGridControlModel::createColumn(const ::rtl::OUString& ColumnType) throw ( :: com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException) 375{ 376 const Sequence< ::rtl::OUString >& rColumnTypes = frm::getColumnTypes(); | 1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance --- 360 unchanged lines hidden (view full) --- 369 m_aSelectListeners.removeInterface(_rxListener); 370} 371 372// XGridColumnFactory 373//------------------------------------------------------------------------------ 374Reference<XPropertySet> SAL_CALL OGridControlModel::createColumn(const ::rtl::OUString& ColumnType) throw ( :: com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException) 375{ 376 const Sequence< ::rtl::OUString >& rColumnTypes = frm::getColumnTypes(); |
377 return createColumn( detail::findPos( ColumnType, rColumnTypes ) ); | 377 return createColumn( forms_detail::findPos( ColumnType, rColumnTypes ) ); |
378} 379 380//------------------------------------------------------------------------------ 381Reference<XPropertySet> OGridControlModel::createColumn(sal_Int32 nTypeId) const 382{ 383 Reference<XPropertySet> xReturn; 384 switch (nTypeId) 385 { --- 774 unchanged lines hidden --- | 378} 379 380//------------------------------------------------------------------------------ 381Reference<XPropertySet> OGridControlModel::createColumn(sal_Int32 nTypeId) const 382{ 383 Reference<XPropertySet> xReturn; 384 switch (nTypeId) 385 { --- 774 unchanged lines hidden --- |