callcatcher: update list
This commit is contained in:
@@ -381,10 +381,8 @@ public:
|
||||
|
||||
static void appendAddress( ::rtl::OUStringBuffer& rStr, const Address& rPos );
|
||||
static void appendRange( ::rtl::OUStringBuffer& rStr, const Range& rRange );
|
||||
static void appendRangeList( ::rtl::OUStringBuffer& rStr, const RangeList& rRanges );
|
||||
|
||||
static void appendAddress( ::rtl::OUStringBuffer& rStr, const TokenAddress& rPos, bool bR1C1 );
|
||||
static void appendRange( ::rtl::OUStringBuffer& rStr, const TokenRange& rRange, bool bR1C1 );
|
||||
|
||||
// encoded text output ----------------------------------------------------
|
||||
|
||||
|
@@ -511,18 +511,6 @@ void StringHelper::appendRange( OUStringBuffer& rStr, const Range& rRange )
|
||||
appendAddress( rStr, rRange.maLast );
|
||||
}
|
||||
|
||||
void StringHelper::appendRangeList( OUStringBuffer& rStr, const RangeList& rRanges )
|
||||
{
|
||||
OUStringBuffer aData;
|
||||
for( RangeList::const_iterator aIt = rRanges.begin(), aEnd = rRanges.end(); aIt != aEnd; ++aIt )
|
||||
{
|
||||
OUStringBuffer aRange;
|
||||
appendRange( aRange, *aIt );
|
||||
appendToken( aData, aRange.makeStringAndClear(), OOX_DUMP_LISTSEP );
|
||||
}
|
||||
rStr.append( aData.makeStringAndClear() );
|
||||
}
|
||||
|
||||
void StringHelper::appendAddress( OUStringBuffer& rStr, const TokenAddress& rPos, bool bR1C1 )
|
||||
{
|
||||
if( bR1C1 && (rPos.mbRelCol || rPos.mbRelRow) )
|
||||
@@ -537,13 +525,6 @@ void StringHelper::appendAddress( OUStringBuffer& rStr, const TokenAddress& rPos
|
||||
}
|
||||
}
|
||||
|
||||
void StringHelper::appendRange( OUStringBuffer& rStr, const TokenRange& rRange, bool bR1C1 )
|
||||
{
|
||||
appendAddress( rStr, rRange.maFirst, bR1C1 );
|
||||
rStr.append( OOX_DUMP_RANGESEP );
|
||||
appendAddress( rStr, rRange.maLast, bR1C1 );
|
||||
}
|
||||
|
||||
// encoded text output --------------------------------------------------------
|
||||
|
||||
void StringHelper::appendCChar( OUStringBuffer& rStr, sal_Unicode cChar, bool bPrefix )
|
||||
|
@@ -243,7 +243,6 @@ public:
|
||||
ScDBData* GetDBAtCursor(SCCOL nCol, SCROW nRow, SCTAB nTab, sal_Bool bStartOnly);
|
||||
const ScDBData* GetDBAtArea(SCTAB nTab, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2) const;
|
||||
ScDBData* GetDBAtArea(SCTAB nTab, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2);
|
||||
const ScDBData* GetFilterDBAtTable(SCTAB nTab) const;
|
||||
ScDBData* GetDBNearCursor(SCCOL nCol, SCROW nRow, SCTAB nTab );
|
||||
|
||||
void DeleteOnTab( SCTAB nTab );
|
||||
|
@@ -974,22 +974,6 @@ ScDBData* ScDBCollection::GetDBAtArea(SCTAB nTab, SCCOL nCol1, SCROW nRow1, SCCO
|
||||
return NULL;
|
||||
}
|
||||
|
||||
const ScDBData* ScDBCollection::GetFilterDBAtTable(SCTAB nTab) const
|
||||
{
|
||||
NamedDBs::DBsType::const_iterator itr = find_if(
|
||||
maNamedDBs.begin(), maNamedDBs.end(), FindFilterDBByTable(nTab));
|
||||
|
||||
const ScDBData* pData = itr == maNamedDBs.end() ? NULL : &(*itr);
|
||||
if (pData)
|
||||
return pData;
|
||||
|
||||
pData = pDoc->GetAnonymousDBData(nTab);
|
||||
if (pData)
|
||||
return pData;
|
||||
|
||||
return getAnonDBs().findByTable(nTab);
|
||||
}
|
||||
|
||||
void ScDBCollection::DeleteOnTab( SCTAB nTab )
|
||||
{
|
||||
FindByTable func(nTab);
|
||||
|
@@ -459,8 +459,6 @@ private:
|
||||
void importDConRef( BiffInputStream& rStrm );
|
||||
/** Reads the defined name used for source data from the DCONNAME record. */
|
||||
void importDConName( BiffInputStream& rStrm );
|
||||
/** Reads the built-in defined name used for source data from the DCONBINAME record. */
|
||||
void importDConBIName( BiffInputStream& rStrm );
|
||||
/** Reads the sheet name and URL from the DCONREF, DCONNAME, or DCONBINAME records. */
|
||||
void importDConUrl( BiffInputStream& rStrm );
|
||||
|
||||
|
@@ -798,11 +798,6 @@ public:
|
||||
/** Writes all formatting attributes to the passed property set. */
|
||||
void writeToPropertySet( PropertySet& rPropSet ) const;
|
||||
|
||||
/** Converts formatting information from BIFF2 cell record data directly. */
|
||||
static void writeBiff2CellFormatToPropertySet(
|
||||
const WorkbookHelper& rHelper, PropertySet& rPropSet,
|
||||
sal_uInt8 nFlags1, sal_uInt8 nFlags2, sal_uInt8 nFlags3 );
|
||||
|
||||
const ::ScPatternAttr& createPattern( bool bSkipPoolDefs = false );
|
||||
|
||||
private:
|
||||
|
@@ -1349,14 +1349,6 @@ void PivotCache::importDConName( BiffInputStream& rStrm )
|
||||
importDConUrl( rStrm );
|
||||
}
|
||||
|
||||
void PivotCache::importDConBIName( BiffInputStream& rStrm )
|
||||
{
|
||||
sal_uInt8 nNameId = rStrm.readuInt8();
|
||||
rStrm.skip( 3 );
|
||||
maSheetSrcModel.maDefName = OUString( sal_Unicode( nNameId ) );
|
||||
importDConUrl( rStrm );
|
||||
}
|
||||
|
||||
void PivotCache::importDConUrl( BiffInputStream& rStrm )
|
||||
{
|
||||
// the URL with sheet name and optional URL of an external document
|
||||
|
@@ -2627,41 +2627,6 @@ void Xf::writeToPropertySet( PropertySet& rPropSet ) const
|
||||
rPropSet.setProperties( aPropMap );
|
||||
}
|
||||
|
||||
/*static*/ void Xf::writeBiff2CellFormatToPropertySet( const WorkbookHelper& rHelper,
|
||||
PropertySet& rPropSet, sal_uInt8 nFlags1, sal_uInt8 nFlags2, sal_uInt8 nFlags3 )
|
||||
{
|
||||
/* Create an XF object and let it do the work. We will have access to its
|
||||
private members here. Also, create temporary border and fill objects,
|
||||
this prevents polluting the border and fill buffers with new temporary
|
||||
objects per imported cell. */
|
||||
Xf aXf( rHelper );
|
||||
Border aBorder( rHelper, false );
|
||||
Fill aFill( rHelper, false );
|
||||
|
||||
// no used flags available in BIFF2 (always true)
|
||||
aXf.setAllUsedFlags( true );
|
||||
|
||||
// set the attributes
|
||||
aXf.maModel.mnFontId = extractValue< sal_Int32 >( nFlags2, 6, 2 );
|
||||
aXf.maModel.mnNumFmtId = extractValue< sal_Int32 >( nFlags2, 0, 6 );
|
||||
aXf.maAlignment.setBiff2Data( nFlags3 );
|
||||
aXf.maProtection.setBiff2Data( nFlags1 );
|
||||
aBorder.setBiff2Data( nFlags3 );
|
||||
aFill.setBiff2Data( nFlags3 );
|
||||
|
||||
// finalize the objects (convert model to API attributes)
|
||||
aXf.finalizeImport();
|
||||
aBorder.finalizeImport();
|
||||
aFill.finalizeImport();
|
||||
|
||||
// write the properties to the property set
|
||||
PropertyMap aPropMap;
|
||||
aXf.writeToPropertyMap( aPropMap );
|
||||
aBorder.writeToPropertyMap( aPropMap );
|
||||
aFill.writeToPropertyMap( aPropMap );
|
||||
rPropSet.setProperties( aPropMap );
|
||||
}
|
||||
|
||||
void Xf::setBiffUsedFlags( sal_uInt8 nUsedFlags )
|
||||
{
|
||||
/* Notes about finding the used flags:
|
||||
|
@@ -233,8 +233,6 @@ public:
|
||||
inline rtl_TextEncoding getTextEncoding() const { return meTextEnc; }
|
||||
/** Sets the text encoding to import/export byte strings. */
|
||||
void setTextEncoding( rtl_TextEncoding eTextEnc );
|
||||
/** Sets text encoding from the default application font, if CODEPAGE record is missing. */
|
||||
void setAppFontEncoding( rtl_TextEncoding eAppFontEnc );
|
||||
/** Returns the codec helper that stores the encoder/decoder object. */
|
||||
inline BiffCodecHelper& getCodecHelper() { return *mxCodecHelper; }
|
||||
|
||||
@@ -511,12 +509,6 @@ void WorkbookGlobals::setTextEncoding( rtl_TextEncoding eTextEnc )
|
||||
meTextEnc = eTextEnc;
|
||||
}
|
||||
|
||||
void WorkbookGlobals::setAppFontEncoding( rtl_TextEncoding eAppFontEnc )
|
||||
{
|
||||
if( !mbHasCodePage )
|
||||
setTextEncoding( eAppFontEnc );
|
||||
}
|
||||
|
||||
// private --------------------------------------------------------------------
|
||||
|
||||
void WorkbookGlobals::initialize( bool bWorkbookFile )
|
||||
|
@@ -231,19 +231,6 @@ void QueueProcessor::ProcessOneRequest (
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
void QueueProcessor::RemoveRequest (CacheKey aKey)
|
||||
{
|
||||
(void)aKey;
|
||||
// See the method declaration above for an explanation why this makes sense.
|
||||
::osl::MutexGuard aGuard (maMutex);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
void QueueProcessor::SetBitmapCache (
|
||||
const ::boost::shared_ptr<BitmapCache>& rpCache)
|
||||
{
|
||||
|
@@ -94,14 +94,6 @@ public:
|
||||
const Size& rSize,
|
||||
const bool bDoSuperSampling);
|
||||
|
||||
/** As we can not really terminate the rendering of a preview bitmap for
|
||||
a request in midair this method acts more like a semaphor. It
|
||||
returns only when it is save for the caller to delete the request.
|
||||
For this to work it is important to remove the request from the
|
||||
queue before calling this method.
|
||||
*/
|
||||
void RemoveRequest (CacheKey aKey);
|
||||
|
||||
/** Use this method when the page cache is (maybe) using a different
|
||||
BitmapCache. This is usually necessary after calling
|
||||
PageCacheManager::ChangeSize().
|
||||
|
@@ -25,7 +25,7 @@
|
||||
# grep for the DEBUG_NODES_SHOWTREE macros in the slideshow source:
|
||||
# Each such place dumps the current node tree to the trace output. Thus,
|
||||
# if you need to check the tree state at other places or times, just add
|
||||
# a DEBUG_NODES_SHOWTREE (or DEBUG_NODES_SHOWTREE_WITHIN, that is).
|
||||
# a DEBUG_NODES_SHOWTREE
|
||||
#
|
||||
|
||||
###################################################
|
||||
|
@@ -58,14 +58,6 @@ namespace slideshow
|
||||
|
||||
++debugGetCurrentOffset();
|
||||
}
|
||||
|
||||
void debugNodesShowTreeWithin( const BaseNode* pNode )
|
||||
{
|
||||
if( pNode )
|
||||
pNode->showTreeFromWithin();
|
||||
|
||||
++debugGetCurrentOffset();
|
||||
}
|
||||
#endif
|
||||
|
||||
AttributableShapeSharedPtr lookupAttributableShape( const ShapeManagerSharedPtr& rShapeManager,
|
||||
|
@@ -41,10 +41,8 @@
|
||||
|
||||
#if OSL_DEBUG_LEVEL >= 2 && defined(DBG_UTIL)
|
||||
# define DEBUG_NODES_SHOWTREE(a) debugNodesShowTree(a);
|
||||
# define DEBUG_NODES_SHOWTREE_WITHIN(a) debugNodesShowTreeWithin(a);
|
||||
#else
|
||||
# define DEBUG_NODES_SHOWTREE(a)
|
||||
# define DEBUG_NODES_SHOWTREE_WITHIN(a)
|
||||
#endif
|
||||
|
||||
namespace slideshow
|
||||
@@ -58,7 +56,6 @@ namespace slideshow
|
||||
#if OSL_DEBUG_LEVEL >= 2 && defined(DBG_UTIL)
|
||||
int& debugGetCurrentOffset();
|
||||
void debugNodesShowTree( const BaseNode* );
|
||||
void debugNodesShowTreeWithin( const BaseNode* );
|
||||
#endif
|
||||
|
||||
/** Look up an AttributableShape from ShapeManager.
|
||||
|
@@ -1,3 +1,4 @@
|
||||
AboutDialog::LinkStubCancelHdl(void*, void*)
|
||||
CertificateExtension_XmlSecImpl::setCertExtn(com::sun::star::uno::Sequence<signed char>, com::sun::star::uno::Sequence<signed char>, unsigned char)
|
||||
CharAttribList::Clear()
|
||||
Dialog::Dialog(Window*, ResId const&)
|
||||
@@ -765,10 +766,57 @@ oox::core::BinaryFilterBase::BinaryFilterBase(com::sun::star::uno::Reference<com
|
||||
oox::core::FilterBase::openSubStorage(rtl::OUString const&, bool) const
|
||||
oox::core::FilterBase::requestEncryptionData(comphelper::IDocPasswordVerifier&) const
|
||||
oox::dump::SequenceRecordObjectBase::construct(oox::dump::OutputObjectBase const&, oox::dump::BinaryInputStreamRef const&, oox::dump::String const&, oox::dump::String const&)
|
||||
oox::dump::StringHelper::appendRange(rtl::OUStringBuffer&, oox::dump::TokenRange const&, bool)
|
||||
oox::dump::StringHelper::appendRangeList(rtl::OUStringBuffer&, std::__debug::vector<oox::dump::Range, std::allocator<oox::dump::Range> > const&)
|
||||
oox::xls::Alignment::setBiff3Data(unsigned short)
|
||||
oox::xls::Alignment::setBiff4Data(unsigned short)
|
||||
oox::xls::Alignment::setBiff5Data(unsigned short)
|
||||
oox::xls::Alignment::setBiff8Data(unsigned short, unsigned short)
|
||||
oox::xls::BiffDecoder_RCF::BiffDecoder_RCF(unsigned char*, unsigned char*, unsigned char*)
|
||||
oox::xls::BiffDecoder_XOR::BiffDecoder_XOR(unsigned short, unsigned short)
|
||||
oox::xls::BiffDrawingObjectBase::importObjBiff3(oox::xls::WorksheetHelper const&, oox::xls::BiffInputStream&)
|
||||
oox::xls::BiffDrawingObjectBase::importObjBiff4(oox::xls::WorksheetHelper const&, oox::xls::BiffInputStream&)
|
||||
oox::xls::BiffDrawingObjectBase::importObjBiff5(oox::xls::WorksheetHelper const&, oox::xls::BiffInputStream&)
|
||||
oox::xls::BiffHelper::calcTextEncodingFromCodePage(unsigned short)
|
||||
oox::xls::BiffWorkbookContextBase::BiffWorkbookContextBase(oox::xls::WorkbookHelper const&)
|
||||
oox::xls::Border::setBiff3Data(unsigned int)
|
||||
oox::xls::Border::setBiff5Data(unsigned int, unsigned int)
|
||||
oox::xls::Border::setBiff8Data(unsigned int, unsigned int)
|
||||
oox::xls::CellBlock::CellBlock(oox::xls::WorksheetHelper const&, oox::ValueRange const&, int)
|
||||
oox::xls::CellStyleBuffer::importStyle(oox::xls::BiffInputStream&)
|
||||
oox::xls::Comment::importNoteBiff2(oox::xls::BiffInputStream&)
|
||||
oox::xls::Comment::importNoteBiff8(oox::xls::BiffInputStream&)
|
||||
oox::xls::Comment::importNoteSound(oox::xls::BiffInputStream&)
|
||||
oox::xls::CondFormat::importCfHeader(oox::xls::BiffInputStream&)
|
||||
oox::xls::DefinedNamesBuffer::importDefinedName(oox::xls::BiffInputStream&)
|
||||
oox::xls::DefinedNamesBuffer::setLocalCalcSheet(short)
|
||||
oox::xls::ExternalLink::importExternalName(oox::xls::BiffInputStream&)
|
||||
oox::xls::ExternalLinkBuffer::importExternSheet(oox::xls::BiffInputStream&)
|
||||
oox::xls::ExternalLinkBuffer::importExternSheet8(oox::xls::BiffInputStream&)
|
||||
oox::xls::ExternalLinkBuffer::importExternalBook(oox::xls::BiffInputStream&)
|
||||
oox::xls::Fill::setBiff3Data(unsigned short)
|
||||
oox::xls::Fill::setBiff5Data(unsigned int)
|
||||
oox::xls::Fill::setBiff8Data(unsigned int, unsigned short)
|
||||
oox::xls::FilterColumn::importFilterColumn(oox::xls::BiffInputStream&)
|
||||
oox::xls::Font::importFontColor(oox::xls::BiffInputStream&)
|
||||
oox::xls::Font::importFontData2(oox::xls::BiffInputStream&)
|
||||
oox::xls::Font::importFontData5(oox::xls::BiffInputStream&)
|
||||
oox::xls::Font::importFontName2(oox::xls::BiffInputStream&)
|
||||
oox::xls::Font::importFontName8(oox::xls::BiffInputStream&)
|
||||
oox::xls::PivotCache::importDConName(oox::xls::BiffInputStream&)
|
||||
oox::xls::PivotCache::importDConRef(oox::xls::BiffInputStream&)
|
||||
oox::xls::PivotTable::importPTDataField(oox::xls::BiffInputStream&)
|
||||
oox::xls::PivotTable::importPTDefinition(oox::xls::BiffInputStream&, short)
|
||||
oox::xls::PivotTable::importPTDefinition2(oox::xls::BiffInputStream&)
|
||||
oox::xls::PivotTable::importPTPageFields(oox::xls::BiffInputStream&)
|
||||
oox::xls::PivotTable::importPTRowColFields(oox::xls::BiffInputStream&)
|
||||
oox::xls::PivotTableField::importPTField(oox::xls::BiffInputStream&)
|
||||
oox::xls::Protection::setBiff3Data(unsigned short)
|
||||
oox::xls::QueryTable::importQueryTable(oox::xls::BiffInputStream&)
|
||||
oox::xls::QueryTable::importQueryTableRefresh(oox::xls::BiffInputStream&)
|
||||
oox::xls::QueryTable::importQueryTableSettings(oox::xls::BiffInputStream&)
|
||||
oox::xls::RichString::importByteString(oox::xls::BiffInputStream&, unsigned short, int)
|
||||
oox::xls::RichString::importUniString(oox::xls::BiffInputStream&, int)
|
||||
oox::xls::Scenario::importScenario(oox::xls::BiffInputStream&)
|
||||
oox::xls::Xf::setBiffUsedFlags(unsigned char)
|
||||
psp::PrinterGfx::DrawBitmap(Rectangle const&, Rectangle const&, psp::PrinterBmp const&, psp::PrinterBmp const&)
|
||||
psp::PrinterGfx::DrawMask(Rectangle const&, Rectangle const&, psp::PrinterBmp const&, psp::PrinterColor&)
|
||||
psp::PrinterGfx::GetGlyphBoundRect(unsigned short, Rectangle&)
|
||||
@@ -780,7 +828,6 @@ sd::LeftDrawPaneShell::RegisterInterface(SfxModule*)
|
||||
sd::LeftImpressPaneShell::RegisterInterface(SfxModule*)
|
||||
sd::ToolPanelPaneShell::RegisterInterface(SfxModule*)
|
||||
sd::ViewShellBase::RegisterFactory(unsigned short)
|
||||
sd::slidesorter::cache::GenericPageCache::ReleasePreviewBitmap(SdrPage const*)
|
||||
sd::slidesorter::controller::SelectionFunction::EventDescriptor::EventDescriptor(KeyEvent const&, sd::slidesorter::SlideSorter&)
|
||||
sd::slidesorter::model::VisualState::SetVisualStateBlend(double)
|
||||
sd::slidesorter::view::Button::IsDown() const
|
||||
|
Reference in New Issue
Block a user