callcatcher: update list

This commit is contained in:
Caolán McNamara 2012-01-10 09:35:58 +00:00
parent 84479bc5ab
commit 629cd5caad
25 changed files with 5 additions and 360 deletions

View File

@ -101,7 +101,6 @@ namespace basegfx
/// ControlPoint resets
void resetPrevControlPoint(sal_uInt32 nIndex);
void resetNextControlPoint(sal_uInt32 nIndex);
void resetControlPoints(sal_uInt32 nIndex);
void resetControlPoints();
/// Bezier segment append with control points. The current last polygon point is implicitly taken as start point.
@ -113,22 +112,6 @@ namespace basegfx
bool isNextControlPointUsed(sal_uInt32 nIndex) const;
B2VectorContinuity getContinuityInPoint(sal_uInt32 nIndex) const;
/** check edge for being a bezier segment
This test the existance of control vectors, but do not apply
testAndSolveTrivialBezier() to the bezier segment, so it is still useful
to do so.
Since it can use internal data representations, it is faster
than using getBezierSegment() and applying isBezier() on it.
@param nIndex
Index of the addressed edge's start point
@return
true if edge exists and at least one control vector is used
*/
bool isBezierSegment(sal_uInt32 nIndex) const;
/** bezier segment access
This method also works when it is no bezier segment at all and will fill

View File

@ -238,8 +238,6 @@ namespace basegfx
return *this;
}
BASEGFX_DLLPUBLIC void correctValues(const double fCompareValue = 0.0);
BASEGFX_DLLPUBLIC static const B2DTuple& getEmptyTuple();
};

View File

@ -1378,17 +1378,6 @@ namespace basegfx
}
}
void B2DPolygon::resetControlPoints(sal_uInt32 nIndex)
{
OSL_ENSURE(nIndex < mpPolygon->count(), "B2DPolygon access outside range (!)");
if(mpPolygon->areControlPointsUsed() &&
(!mpPolygon->getPrevControlVector(nIndex).equalZero() || !mpPolygon->getNextControlVector(nIndex).equalZero()))
{
mpPolygon->resetControlVectors(nIndex);
}
}
void B2DPolygon::resetControlPoints()
{
if(mpPolygon->areControlPointsUsed())
@ -1451,35 +1440,6 @@ namespace basegfx
}
}
bool B2DPolygon::isBezierSegment(sal_uInt32 nIndex) const
{
OSL_ENSURE(nIndex < mpPolygon->count(), "B2DPolygon access outside range (!)");
if(mpPolygon->areControlPointsUsed())
{
// Check if the edge exists
const bool bNextIndexValidWithoutClose(nIndex + 1 < mpPolygon->count());
if(bNextIndexValidWithoutClose || mpPolygon->isClosed())
{
const sal_uInt32 nNextIndex(bNextIndexValidWithoutClose ? nIndex + 1 : 0);
return (!mpPolygon->getPrevControlVector(nNextIndex).equalZero()
|| !mpPolygon->getNextControlVector(nIndex).equalZero());
}
else
{
// no valid edge -> no bezier segment, even when local next
// vector may be used
return false;
}
}
else
{
// no control points -> no bezier segment
return false;
}
}
void B2DPolygon::getBezierSegment(sal_uInt32 nIndex, B2DCubicBezier& rTarget) const
{
OSL_ENSURE(nIndex < mpPolygon->count(), "B2DPolygon access outside range (!)");

View File

@ -45,34 +45,6 @@ namespace basegfx
mfY( rTup.getY() )
{}
void B2DTuple::correctValues(const double fCompareValue)
{
if(0.0 == fCompareValue)
{
if(::basegfx::fTools::equalZero(mfX))
{
mfX = 0.0;
}
if(::basegfx::fTools::equalZero(mfY))
{
mfY = 0.0;
}
}
else
{
if(::basegfx::fTools::equal(mfX, fCompareValue))
{
mfX = fCompareValue;
}
if(::basegfx::fTools::equal(mfY, fCompareValue))
{
mfY = fCompareValue;
}
}
}
B2ITuple fround(const B2DTuple& rTup)
{
return B2ITuple(fround(rTup.getX()), fround(rTup.getY()));
@ -80,6 +52,4 @@ namespace basegfx
} // end of namespace basegfx
// eof
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

View File

@ -43,21 +43,6 @@ namespace vba {
// ============================================================================
/** Creates and returns an enumeration of all open documents of the same type
as the specified document.
First, the global module manager (com.sun.star.frame.ModuleManager) is
asked for the type of the passed model, and all open documents with the
same type will be stored in an enumeration object.
@param rxModel
A document model determining the type of the documents.
*/
BASIC_DLLPUBLIC ::com::sun::star::uno::Reference< ::com::sun::star::container::XEnumeration > createDocumentsEnumeration(
const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel >& rxModel );
// ============================================================================
/** Locks or unlocks the controllers of all documents that have the same type
as the specified document.

View File

@ -200,13 +200,6 @@ struct StaticCurrDirPool : public ::rtl::Static< CurrDirPool, StaticCurrDirPool
// ============================================================================
uno::Reference< container::XEnumeration > createDocumentsEnumeration( const uno::Reference< frame::XModel >& rxModel )
{
return new DocumentsEnumeration( rxModel );
}
// ============================================================================
void lockControllersOfAllDocuments( const uno::Reference< frame::XModel >& rxModel, sal_Bool bLockControllers )
{
lclIterateDocuments( &lclLockControllers, rxModel, bLockControllers );

View File

@ -559,24 +559,4 @@ IMPL_LINK( SvxCharMapData, DeleteHdl, PushButton *, EMPTYARG )
return 0;
}
IMPL_LINK( SvxCharMapData, AssignHdl, PushButton *, EMPTYARG )
{
SfxAllItemSet aSet( SfxObjectShell::Current()->GetPool() );
aSet.Put( SfxStringItem( SID_CHARMAP, String::CreateFromAscii("test") ) );
SfxModalDialog* pDlg = new SfxMacroAssignDlg( mpDialog, com::sun::star::uno::Reference < com::sun::star::frame::XFrame >(), aSet );
if ( pDlg && pDlg->Execute() == RET_OK )
{
const SfxItemSet* pOutSet = pDlg->GetOutputItemSet();
const SfxPoolItem* pItem;
if( SFX_ITEM_SET == pOutSet->GetItemState( SID_CHARMAP, sal_False, &pItem ) )
{
// show assigned shortcut
}
}
delete pDlg;
return 0;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

View File

@ -112,7 +112,6 @@ friend class SvxCharacterMap;
DECL_LINK( CharHighlightHdl, Control* pControl );
DECL_LINK( CharPreSelectHdl, Control* pControl );
DECL_LINK( DeleteHdl, PushButton* pBtn );
DECL_LINK( AssignHdl, PushButton* pBtn );
};
class SvxCharacterMap : public SfxModalDialog

View File

@ -156,8 +156,6 @@ public:
bool Search( SCROW nRow, SCSIZE& nIndex ) const;
bool HasLines( SCROW nRow1, SCROW nRow2, Rectangle& rSizes,
bool bLeft, bool bRight ) const;
bool HasAttrib( SCROW nRow1, SCROW nRow2, sal_uInt16 nMask ) const;
bool ExtendMerge( SCCOL nThisCol, SCROW nStartRow, SCROW nEndRow,
SCCOL& rPaintCol, SCROW& rPaintRow,

View File

@ -1161,77 +1161,6 @@ long lcl_LineSize( const SvxBorderLine& rLine )
return nTotal;
}
bool ScAttrArray::HasLines( SCROW nRow1, SCROW nRow2, Rectangle& rSizes,
bool bLeft, bool bRight ) const
{
SCSIZE nStartIndex;
SCSIZE nEndIndex;
Search( nRow1, nStartIndex );
Search( nRow2, nEndIndex );
bool bFound = false;
const SvxBoxItem* pItem = 0;
const SvxBorderLine* pLine = 0;
long nCmp;
// top
pItem = (const SvxBoxItem*) &pData[nStartIndex].pPattern->GetItem(ATTR_BORDER);
pLine = pItem->GetTop();
if (pLine)
{
nCmp = lcl_LineSize(*pLine);
if ( nCmp > rSizes.Top() )
rSizes.Top() = nCmp;
bFound = true;
}
// down
if ( nEndIndex != nStartIndex )
pItem = (const SvxBoxItem*) &pData[nEndIndex].pPattern->GetItem(ATTR_BORDER);
pLine = pItem->GetBottom();
if (pLine)
{
nCmp = lcl_LineSize(*pLine);
if ( nCmp > rSizes.Bottom() )
rSizes.Bottom() = nCmp;
bFound = true;
}
if ( bLeft || bRight )
for ( SCSIZE i=nStartIndex; i<=nEndIndex; i++)
{
pItem = (const SvxBoxItem*) &pData[i].pPattern->GetItem(ATTR_BORDER);
if (bLeft)
{
pLine = pItem->GetLeft();
if (pLine)
{
nCmp = lcl_LineSize(*pLine);
if ( nCmp > rSizes.Left() )
rSizes.Left() = nCmp;
bFound = true;
}
}
if (bRight)
{
pLine = pItem->GetRight();
if (pLine)
{
nCmp = lcl_LineSize(*pLine);
if ( nCmp > rSizes.Right() )
rSizes.Right() = nCmp;
bFound = true;
}
}
}
return bFound;
}
// Test if field contains specific attribute
bool ScAttrArray::HasAttrib( SCROW nRow1, SCROW nRow2, sal_uInt16 nMask ) const

View File

@ -872,20 +872,6 @@ void SvtFrameWindow_Impl::ViewNonEmptyWin()
ViewTextWin();
}
IMPL_STATIC_LINK_NOINSTANCE( SvtFrameWindow_Impl, ExecuteHdl_Impl, SvtExecuteInfo*, pExecuteInfo )
{
try
{
pExecuteInfo->xDispatch->dispatch( pExecuteInfo->aTargetURL, Sequence < PropertyValue >() );
}
catch ( Exception& )
{
}
delete pExecuteInfo;
return 0;
}
void SvtFrameWindow_Impl::ShowDocInfo( const String& rURL )
{
try
@ -1012,13 +998,6 @@ void SvtFrameWindow_Impl::OpenFile( const String& rURL, sal_Bool bPreview, sal_B
}
else
{
/*
SvtExecuteInfo* pExecuteInfo = new SvtExecuteInfo;
pExecuteInfo->xDispatch = xDisp;
pExecuteInfo->aTargetURL = aURL;
Application::PostUserEvent(
STATIC_LINK(0, SvtFrameWindow_Impl, ExecuteHdl_Impl), pExecuteInfo );
*/
Sequence < PropertyValue > aArgs;
xDisp->dispatch( aURL, aArgs );
m_aOpenURL = rtl::OUString();

View File

@ -219,8 +219,6 @@ private:
::com::sun::star::util::URL aTargetURL;
};
DECL_STATIC_LINK( SvtFrameWindow_Impl, ExecuteHdl_Impl, SvtExecuteInfo* );
public:
SvtFrameWindow_Impl( Window* pParent );
~SvtFrameWindow_Impl();

View File

@ -138,7 +138,6 @@ class SVX_DLLPUBLIC SvxBmpMask : public SfxDockingWindow
sal_uIntPtr* pTols );
Bitmap ImpMask( const Bitmap& rBitmap );
BitmapEx ImpMask( const BitmapEx& rBitmapEx );
GDIMetaFile ImpMask( const GDIMetaFile& rMtf );
Animation ImpMask( const Animation& rAnimation );
BitmapEx ImpMaskTransparent( const BitmapEx& rBitmapEx,

View File

@ -86,8 +86,6 @@ class SvxColorBox : public ColorLB
::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame > mxFrame;
#ifdef _SVX_ITEMWIN_CXX
DECL_LINK( DelayHdl_Impl, Timer * );
void ReleaseFocus_Impl();
#endif

View File

@ -116,8 +116,6 @@ class SVX_DLLPUBLIC SvxDrawPage : public ::cppu::WeakAggImplHelper5< ::com::sun:
// ein ein SvxShape aggregierenden Objekt anlegen.
virtual ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape > _CreateShape( SdrObject *pObj ) const throw();
static SvxDrawPage* GetPageForSdrPage( SdrPage* pPage ) throw();
UNO3_GETIMPLEMENTATION_DECL( SvxDrawPage )
// SfxListener

View File

@ -719,13 +719,6 @@ Bitmap SvxBmpMask::ImpMask( const Bitmap& rBitmap )
//-------------------------------------------------------------------------
BitmapEx SvxBmpMask::ImpMask( const BitmapEx& rBitmapEx )
{
return BitmapEx( ImpMask( rBitmapEx.GetBitmap() ), rBitmapEx.GetMask() );
}
//-------------------------------------------------------------------------
BitmapEx SvxBmpMask::ImpMaskTransparent( const BitmapEx& rBitmapEx, const Color& rColor, const long nTol )
{
EnterWait();

View File

@ -301,21 +301,6 @@ SvxColorBox::SvxColorBox(
// -----------------------------------------------------------------------
IMPL_LINK( SvxColorBox, DelayHdl_Impl, Timer *, EMPTYARG )
{
SfxObjectShell* pSh = SfxObjectShell::Current();
if ( pSh )
{
const SvxColorListItem* pItem = (const SvxColorListItem*)( pSh->GetItem( SID_COLOR_TABLE ) );
if ( pItem )
Fill( pItem->GetColorList() );
}
return 0;
}
// -----------------------------------------------------------------------
SvxColorBox::~SvxColorBox()
{
}

View File

@ -126,13 +126,6 @@ void SvxDrawPage::release() throw()
OWeakAggObject::release();
}
//----------------------------------------------------------------------
SvxDrawPage* SvxDrawPage::GetPageForSdrPage( SdrPage* mpPage ) throw()
{
return getImplementation( mpPage->getUnoPage() );
}
// XComponent
void SvxDrawPage::disposing() throw()
{

View File

@ -2,7 +2,6 @@ AtomDocument::AtomDocument(AtomPubSession*, std::basic_string<char, std::char_tr
AtomFolder::AtomFolder(AtomPubSession*, std::basic_string<char, std::char_traits<char>, std::allocator<char> >)
AtomPubSession::getCollectionUrl(Collection::Type)
AtomPubSession::~AtomPubSession()
BitmapWriteAccess::FillPolygon(Polygon const&)
BufferNode::childAt(int) const
ByteString::Assign(char const*, unsigned short)
ByteString::Assign(char)
@ -97,12 +96,6 @@ FontSizeBox::SetUserValue(long, FieldUnit)
FontStyleBox::FontStyleBox(Window*, long)
FormattedField::SetValidateText(String const&, String const*)
FormatterBase::SetFieldText(String const&, unsigned char)
GDIMetaFile::IsEqual(GDIMetaFile const&) const
GDIMetaFile::ReplaceColors(Color const&, Color const&, unsigned long)
GDIMetaFile::SaveStatus()
GDIMetaFile::Wind(unsigned long)
GDIMetaFile::WindEnd()
GDIMetaFile::WindNext()
GraphCtrl::GraphCtrl(Window*, long)
GtkSalFrame::popIgnoreDamage()
GtkSalFrame::pushIgnoreDamage()
@ -112,10 +105,6 @@ HTMLControls::Insert(HTMLControls const*, unsigned short, unsigned short)
HTMLControls::Remove(HTMLControl const*&, unsigned short)
HTMLControls::Remove(unsigned short, unsigned short)
Hatch::SetStyle(HatchStyle)
HeaderBar::InsertItem(unsigned short, Image const&, String const&, long, unsigned short, unsigned short)
HeaderBar::InsertItem(unsigned short, Image const&, long, unsigned short, unsigned short)
HeaderBar::SetHelpId(unsigned short, rtl::OString const&)
HeaderBar::SetHelpText(unsigned short, String const&)
ImageButton::ImageButton(unsigned short)
ImageList::AddImage(unsigned short, Image const&)
ImageList::ReplaceImage(unsigned short, unsigned short)
@ -162,7 +151,7 @@ MenuBar::MenuBar(ResId const&)
MergeData::~MergeData()
MergeDataFile::Dump()
MessBox::MessBox(unsigned short)
MessBox::SetDefaultCheckBoxText()
MetaAction::IsEqual(MetaAction const&) const
MetaCommentAction::MetaCommentAction(unsigned char const*, unsigned int)
MetricBox::RemoveValue(long, FieldUnit)
MetricField::ConvertValue(long, unsigned short, FieldUnit, MapUnit)
@ -210,22 +199,15 @@ SVGExport::GetGlyphPlacement() const
SVGExport::IsUseGradient() const
SVGExport::popClip()
SVGExport::pushClip(basegfx::B2DPolyPolygon const&)
SalColormap::SalColormap(BitmapPalette const&)
SalColormap::SetPalette(BitmapPalette const&)
SalDisplay::IsLocal()
SalGraphics::DrawBitmap(SalTwoRect const*, SalBitmap const&, unsigned int, OutputDevice const*)
SalGraphics::DrawNativeControlText(unsigned int, unsigned int, Rectangle const&, unsigned int, ImplControlValue const&, rtl::OUString const&, OutputDevice const*)
SalGraphics::drawAlphaBitmap(SalTwoRect const&, SalBitmap const&, SalBitmap const&)
SalGraphics::drawPolyLine(basegfx::B2DPolygon const&, double, basegfx::B2DVector const&, basegfx::B2DLineJoin)
SalGraphics::drawPolyPolygon(basegfx::B2DPolyPolygon const&, double)
SalI18N_InputContext::CommitStringCallback(unsigned short*, unsigned long)
SalI18N_InputContext::SetPreeditState(int)
SanExtensionImpl::extractCertExt()
SanExtensionImpl::setCertExtn(com::sun::star::uno::Sequence<signed char>, com::sun::star::uno::Sequence<signed char>, unsigned char)
SanExtensionImpl::setCertExtn(unsigned char*, unsigned int, unsigned char*, unsigned int, unsigned char)
SbiExprNode::IsString()
SbiExpression::SbiExpression(SbiParser*, SbiToken)
SbiExpression::SbiExpression(SbiParser*, String const&)
SbiExpression::VBA_Imp()
SbiIoSystem::NextChannel()
SbiRuntime::GetParams()
@ -253,7 +235,6 @@ ScAddInDocs::Insert(ScDocument* const&, unsigned short&)
ScAddInDocs::Insert(ScDocument* const*, unsigned short)
ScAddInDocs::Remove(ScDocument* const&, unsigned short)
ScAreaLinkSaveCollection::clear()
ScAttrArray::HasLines(int, int, Rectangle&, bool, bool) const
ScCellMergeOption::ScCellMergeOption()
ScCellObj::SetFormulaResultDouble(double)
ScCellObj::SetFormulaResultString(rtl::OUString const&)
@ -261,6 +242,7 @@ ScCellObj::SetFormulaWithGrammar(rtl::OUString const&, rtl::OUString const&, for
ScChangeActionContent::SetNewValue(String const&, ScDocument*)
ScCompressedArray<int, unsigned char>::GetEntryCount() const
ScCompressedArray<int, unsigned short>::CopyFrom(ScCompressedArray<int, unsigned short> const&, int, int, long)
ScCompressedArray<int, unsigned short>::GetEntryCount() const
ScCompressedArray<int, unsigned short>::GetValue(int) const
ScCompressedArray<int, unsigned short>::Insert(int, unsigned long)
ScCompressedArray<int, unsigned short>::Remove(int, unsigned long)
@ -537,29 +519,6 @@ SvXMLUnitConverter::convertEnum(rtl::OUStringBuffer&, unsigned short, SvXMLEnumS
SvXMLUnitConverter::convertMeasureToXML(rtl::OUStringBuffer&, int, short) const
SvpSalInstance::CancelEvent(SalFrame const*, void*, unsigned short)
SvtBroadcaster::Forward(SvtBroadcaster&, SfxHint const&)
SvtFrameWindow_Impl::ExecuteHdl_Impl(SvtFrameWindow_Impl*, SvtFrameWindow_Impl::SvtExecuteInfo*)
SvtGraphicFill::getGradient1stColor() const
SvtGraphicFill::getGradient2ndColor() const
SvtGraphicFill::getGradientStepCount() const
SvtGraphicFill::getHatchColor() const
SvtGraphicFill::getHatchType() const
SvtGraphicFill::setFillColor(Color)
SvtGraphicFill::setFillRule(SvtGraphicFill::FillRule)
SvtGraphicFill::setFillType(SvtGraphicFill::FillType)
SvtGraphicFill::setGraphic(Graphic const&)
SvtGraphicFill::setHatchColor(Color)
SvtGraphicFill::setHatchType(SvtGraphicFill::HatchType)
SvtGraphicFill::setTiling(bool)
SvtGraphicFill::setTransform(SvtGraphicFill::Transform const&)
SvtGraphicFill::setTransparency(double)
SvtGraphicStroke::setCapType(SvtGraphicStroke::CapType)
SvtGraphicStroke::setDashArray(std::__debug::vector<double, std::allocator<double> > const&)
SvtGraphicStroke::setEndArrow(PolyPolygon const&)
SvtGraphicStroke::setJoinType(SvtGraphicStroke::JoinType)
SvtGraphicStroke::setMiterLimit(double)
SvtGraphicStroke::setStartArrow(PolyPolygon const&)
SvtGraphicStroke::setStrokeWidth(double)
SvtGraphicStroke::setTransparency(double)
SvtIconChoiceCtrl::SvtIconChoiceCtrl(Window*, ResId const&)
SvtIconWindow_Impl::GetSelectedIconText() const
SvtListenerIter::First(void* (*)())
@ -587,11 +546,8 @@ SvxAutocorrWordList::Insert(SvxAutocorrWord* const*, unsigned short)
SvxAutocorrWordList::Insert(SvxAutocorrWordList const*, unsigned short, unsigned short)
SvxAutocorrWordList::Remove(SvxAutocorrWord* const&, unsigned short)
SvxAutocorrWordList::Remove(unsigned short, unsigned short)
SvxBmpMask::ImpMask(BitmapEx const&)
SvxCharMapData::LinkStubAssignHdl(void*, void*)
SvxChartDataDescrItem::SvxChartDataDescrItem(SvxChartDataDescr, unsigned short)
SvxChartTextOrientItem::SvxChartTextOrientItem(SvxChartTextOrient, unsigned short)
SvxColorBox::LinkStubDelayHdl_Impl(void*, void*)
SvxColorValueSet::SvxColorValueSet(Window*, long)
SvxColumnItem::GetVisibleRight() const
SvxContourDlg::ScaleContour(PolyPolygon&, Graphic const&, MapUnit, Size const&)
@ -602,7 +558,6 @@ SvxContourDlg::SetGraphicLinked(unsigned char)
SvxContourDlg::SetPolyPolygon(PolyPolygon const&)
SvxDoCapitals::Do(String const&, unsigned short, unsigned short, unsigned char)
SvxDrawOutlinerViewForwarder::SetShapePos(Point const&)
SvxDrawPage::GetPageForSdrPage(SdrPage*)
SvxDrawPage::SvxDrawPage()
SvxEditSourceHelper::UserSpaceToEE(Rectangle const&, Size const&, bool)
SvxEditSourceHint::SetEndValue(unsigned long)
@ -836,7 +791,6 @@ SwpHtStart::Insert(SwTxtAttr const**, unsigned short)
SwpHtStart::Insert(SwpHtStart const*, unsigned short, unsigned short)
SwpHtStart::Remove(SwTxtAttr const*&, unsigned short)
SystemChildWindow::SystemChildWindow(Window*, ResId const&)
SystemChildWindow::SystemChildWindow(Window*, long, SystemWindowData*, unsigned char)
TB::NeedsPositioning()
TESortedPositions::Insert(TESortedPositions const*, unsigned short, unsigned short)
TESortedPositions::Insert(unsigned long const&, unsigned short&)
@ -856,6 +810,7 @@ TempFile::IsValid() const
TextObj::TextObj(TextObj&)
TextObj::Write(SvStream*)
TransferableDataHelper::GetInterface(com::sun::star::datatransfer::DataFlavor const&, com::sun::star::uno::Reference<com::sun::star::uno::XInterface>&)
TypeDescriptor_Init_Impl::~TypeDescriptor_Init_Impl()
UCBStorage::IsStorageFile(String const&)
UCBStream::UCBStream(com::sun::star::uno::Reference<com::sun::star::io::XOutputStream>&)
UnoApiTest::UnoApiTest()
@ -1040,9 +995,6 @@ basegfx::B2DHomPoint::getB2DPoint() const
basegfx::B2DHomPoint::setX(double)
basegfx::B2DHomPoint::setY(double)
basegfx::B2DPolygon::insert(unsigned int, basegfx::B2DPolygon const&, unsigned int, unsigned int)
basegfx::B2DPolygon::isBezierSegment(unsigned int) const
basegfx::B2DPolygon::resetControlPoints(unsigned int)
basegfx::B2DTuple::correctValues(double)
basegfx::B2DVector::isNormalized() const
basegfx::B2I64Tuple::getEmptyTuple()
basegfx::B2IVector::angle(basegfx::B2IVector const&) const
@ -1145,7 +1097,6 @@ basegfx::unotools::homMatrixFromAffineMatrix(com::sun::star::geometry::AffineMat
basegfx::unotools::integerPoint2DFromB2IPoint(basegfx::B2IPoint const&)
basegfx::unotools::integerRectangle2DFromB2IRectangle(basegfx::B2IRange const&)
basic::ScriptExtensionIterator::implGetScriptPackageFromPackage(com::sun::star::uno::Reference<com::sun::star::deployment::XPackage>, bool&)
basic::vba::createDocumentsEnumeration(com::sun::star::uno::Reference<com::sun::star::frame::XModel> const&)
basic::vba::getCurrentDirectory(com::sun::star::uno::Reference<com::sun::star::frame::XModel> const&)
binfilter::B3dEdgeEntryBucketMemArr::Insert(binfilter::B3dEdgeEntryBucketMemArr const*, unsigned short, unsigned short, unsigned short)
binfilter::B3dEdgeEntryBucketMemArr::Replace(char const*&, unsigned short)
@ -1789,6 +1740,7 @@ oox::xls::FormulaParserImpl::pushParenthesesOperand()
oox::xls::FormulaParserImpl::removeLastOperands(unsigned long)
oox::xls::FormulaProcessorBase::extractCellAddress(com::sun::star::table::CellAddress&, com::sun::star::uno::Sequence<com::sun::star::sheet::FormulaToken> const&, bool) const
oox::xls::FormulaProcessorBase::generateApiAddressString(com::sun::star::table::CellAddress const&) const
oox::xls::FormulaProcessorBase::generateApiRangeListString(oox::xls::ApiCellRangeList const&) const
oox::xls::FunctionParamInfoIterator::getParamInfo() const
oox::xls::FunctionProvider::getFuncInfoFromOdfFuncName(rtl::OUString const&) const
oox::xls::SheetDataBuffer::XfIdRange::set(com::sun::star::table::CellAddress const&, int, int)

View File

@ -186,7 +186,7 @@
#define SV_STDTEXT_FIRST SV_STDTEXT_SERVICENOTAVAILABLE
#define SV_STDTEXT_SERVICENOTAVAILABLE 10200
#define SV_STDTEXT_DONTHINTAGAIN 10201
#define SV_STDTEXT_DONTASKAGAIN 10202
#define SV_STDTEXT_DONTWARNAGAIN 10203
#define SV_STDTEXT_ABOUT 10204

View File

@ -202,8 +202,6 @@ public:
void FillRect( const Rectangle& rRect );
void DrawRect( const Rectangle& rRect );
void FillPolygon( const Polygon& rPoly );
private:
BitmapColor* mpLineColor;

View File

@ -100,7 +100,6 @@ public:
void SetImage( const Image& rImage ) { maImage = rImage; }
const Image& GetImage() const { return maImage; }
void SetDefaultCheckBoxText();
void SetCheckBoxText( const XubString& rText ) { maCheckBoxText = rText;}
const XubString& GetCheckBoxText() const { return maCheckBoxText;}
void SetCheckBoxState( sal_Bool bCheck );

View File

@ -266,32 +266,4 @@ void BitmapWriteAccess::DrawRect( const Rectangle& rRect )
}
}
// ------------------------------------------------------------------
void BitmapWriteAccess::FillPolygon( const Polygon& rPoly )
{
const sal_uInt16 nSize = rPoly.GetSize();
if( nSize && mpFillColor )
{
const BitmapColor& rFillColor = *mpFillColor;
Region aRegion( rPoly );
Rectangle aRect;
aRegion.Intersect( Rectangle( Point(), Size( Width(), Height() ) ) );
if( !aRegion.IsEmpty() )
{
RegionHandle aRegHandle( aRegion.BeginEnumRects() );
while( aRegion.GetNextEnumRect( aRegHandle, aRect ) )
for( long nY = aRect.Top(), nEndY = aRect.Bottom(); nY <= nEndY; nY++ )
for( long nX = aRect.Left(), nEndX = aRect.Right(); nX <= nEndX; nX++ )
SetPixel( nY, nX, rFillColor );
aRegion.EndEnumRects( aRegHandle );
}
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

View File

@ -34,11 +34,6 @@ String SV_STDTEXT_SERVICENOTAVAILABLE
Text [ en-US ] = "The component (%s) could not be loaded.\nPlease start setup with the repair option.";
};
String SV_STDTEXT_DONTHINTAGAIN
{
Text [ en-US ] = "Do not show this information again.";
};
String SV_STDTEXT_DONTASKAGAIN
{
Text [ en-US ] = "Do not show this question again.";

View File

@ -447,15 +447,6 @@ void MessBox::SetCheckBoxState( sal_Bool bCheck )
// -----------------------------------------------------------------------
void MessBox::SetDefaultCheckBoxText()
{
ResMgr* pResMgr = ImplGetResMgr();
if( pResMgr )
maCheckBoxText = XubString( ResId( SV_STDTEXT_DONTHINTAGAIN, *pResMgr ) );
}
// -----------------------------------------------------------------------
Size MessBox::GetOptimalSize(WindowSizeType eType) const
{
switch( eType ) {