summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolygon.hxx17
-rw-r--r--basegfx/inc/basegfx/tuple/b2dtuple.hxx2
-rw-r--r--basegfx/source/polygon/b2dpolygon.cxx40
-rw-r--r--basegfx/source/tuple/b2dtuple.cxx30
-rw-r--r--basic/inc/basic/vbahelper.hxx15
-rw-r--r--basic/source/basmgr/vbahelper.cxx7
-rw-r--r--cui/source/dialogs/cuicharmap.cxx20
-rw-r--r--cui/source/inc/cuicharmap.hxx1
-rw-r--r--sc/inc/attarray.hxx2
-rw-r--r--sc/source/core/data/attarray.cxx71
-rw-r--r--svtools/source/contnr/templwin.cxx21
-rw-r--r--svtools/source/contnr/templwin.hxx2
-rw-r--r--svx/inc/svx/bmpmask.hxx1
-rw-r--r--svx/inc/svx/itemwin.hxx2
-rw-r--r--svx/inc/svx/unopage.hxx2
-rw-r--r--svx/source/dialog/_bmpmask.cxx7
-rw-r--r--svx/source/tbxctrls/itemwin.cxx15
-rw-r--r--svx/source/unodraw/unopage.cxx7
-rw-r--r--unusedcode.easy56
-rw-r--r--vcl/inc/svids.hrc2
-rw-r--r--vcl/inc/vcl/bmpacc.hxx2
-rw-r--r--vcl/inc/vcl/msgbox.hxx1
-rw-r--r--vcl/source/gdi/bmpacc3.cxx28
-rw-r--r--vcl/source/src/stdtext.src5
-rw-r--r--vcl/source/window/msgbox.cxx9
25 files changed, 5 insertions, 360 deletions
diff --git a/basegfx/inc/basegfx/polygon/b2dpolygon.hxx b/basegfx/inc/basegfx/polygon/b2dpolygon.hxx
index da23bb4f1058..707590de87ad 100644
--- a/basegfx/inc/basegfx/polygon/b2dpolygon.hxx
+++ b/basegfx/inc/basegfx/polygon/b2dpolygon.hxx
@@ -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
diff --git a/basegfx/inc/basegfx/tuple/b2dtuple.hxx b/basegfx/inc/basegfx/tuple/b2dtuple.hxx
index 4706cf92158e..19ec58d106a7 100644
--- a/basegfx/inc/basegfx/tuple/b2dtuple.hxx
+++ b/basegfx/inc/basegfx/tuple/b2dtuple.hxx
@@ -238,8 +238,6 @@ namespace basegfx
return *this;
}
- BASEGFX_DLLPUBLIC void correctValues(const double fCompareValue = 0.0);
-
BASEGFX_DLLPUBLIC static const B2DTuple& getEmptyTuple();
};
diff --git a/basegfx/source/polygon/b2dpolygon.cxx b/basegfx/source/polygon/b2dpolygon.cxx
index 3bc0401e271e..a7749220931c 100644
--- a/basegfx/source/polygon/b2dpolygon.cxx
+++ b/basegfx/source/polygon/b2dpolygon.cxx
@@ -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 (!)");
diff --git a/basegfx/source/tuple/b2dtuple.cxx b/basegfx/source/tuple/b2dtuple.cxx
index cb44b7d4c11d..04fd5510bd6a 100644
--- a/basegfx/source/tuple/b2dtuple.cxx
+++ b/basegfx/source/tuple/b2dtuple.cxx
@@ -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: */
diff --git a/basic/inc/basic/vbahelper.hxx b/basic/inc/basic/vbahelper.hxx
index 26ec1184916c..4655897e400d 100644
--- a/basic/inc/basic/vbahelper.hxx
+++ b/basic/inc/basic/vbahelper.hxx
@@ -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.
diff --git a/basic/source/basmgr/vbahelper.cxx b/basic/source/basmgr/vbahelper.cxx
index f581a90b613e..16e7222c28d1 100644
--- a/basic/source/basmgr/vbahelper.cxx
+++ b/basic/source/basmgr/vbahelper.cxx
@@ -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 );
diff --git a/cui/source/dialogs/cuicharmap.cxx b/cui/source/dialogs/cuicharmap.cxx
index 7a482d0bdd63..612f476d4ca2 100644
--- a/cui/source/dialogs/cuicharmap.cxx
+++ b/cui/source/dialogs/cuicharmap.cxx
@@ -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: */
diff --git a/cui/source/inc/cuicharmap.hxx b/cui/source/inc/cuicharmap.hxx
index 040c299b7c6a..a7f6370b4bb5 100644
--- a/cui/source/inc/cuicharmap.hxx
+++ b/cui/source/inc/cuicharmap.hxx
@@ -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
diff --git a/sc/inc/attarray.hxx b/sc/inc/attarray.hxx
index b58472e4fb2a..706a1c0c28ff 100644
--- a/sc/inc/attarray.hxx
+++ b/sc/inc/attarray.hxx
@@ -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,
diff --git a/sc/source/core/data/attarray.cxx b/sc/source/core/data/attarray.cxx
index 2aa660aec239..3b0c9231ebf1 100644
--- a/sc/source/core/data/attarray.cxx
+++ b/sc/source/core/data/attarray.cxx
@@ -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
diff --git a/svtools/source/contnr/templwin.cxx b/svtools/source/contnr/templwin.cxx
index 66f80a4c9f64..2209b6ab9780 100644
--- a/svtools/source/contnr/templwin.cxx
+++ b/svtools/source/contnr/templwin.cxx
@@ -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();
diff --git a/svtools/source/contnr/templwin.hxx b/svtools/source/contnr/templwin.hxx
index 248eafa5a027..070d0167e4c7 100644
--- a/svtools/source/contnr/templwin.hxx
+++ b/svtools/source/contnr/templwin.hxx
@@ -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();
diff --git a/svx/inc/svx/bmpmask.hxx b/svx/inc/svx/bmpmask.hxx
index 407cf5ee8c37..5cdc6d21f1bf 100644
--- a/svx/inc/svx/bmpmask.hxx
+++ b/svx/inc/svx/bmpmask.hxx
@@ -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,
diff --git a/svx/inc/svx/itemwin.hxx b/svx/inc/svx/itemwin.hxx
index 11f370f03e82..acf00d18606f 100644
--- a/svx/inc/svx/itemwin.hxx
+++ b/svx/inc/svx/itemwin.hxx
@@ -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
diff --git a/svx/inc/svx/unopage.hxx b/svx/inc/svx/unopage.hxx
index 0e68afd53a3b..d35ccfc04028 100644
--- a/svx/inc/svx/unopage.hxx
+++ b/svx/inc/svx/unopage.hxx
@@ -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
diff --git a/svx/source/dialog/_bmpmask.cxx b/svx/source/dialog/_bmpmask.cxx
index def765123196..f55a18174873 100644
--- a/svx/source/dialog/_bmpmask.cxx
+++ b/svx/source/dialog/_bmpmask.cxx
@@ -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();
diff --git a/svx/source/tbxctrls/itemwin.cxx b/svx/source/tbxctrls/itemwin.cxx
index a3116d166924..fdb7b14fca61 100644
--- a/svx/source/tbxctrls/itemwin.cxx
+++ b/svx/source/tbxctrls/itemwin.cxx
@@ -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()
{
}
diff --git a/svx/source/unodraw/unopage.cxx b/svx/source/unodraw/unopage.cxx
index 1f0b91d2a489..cb5aab34acdc 100644
--- a/svx/source/unodraw/unopage.cxx
+++ b/svx/source/unodraw/unopage.cxx
@@ -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()
{
diff --git a/unusedcode.easy b/unusedcode.easy
index de596f02a36e..242f326c7626 100644
--- a/unusedcode.easy
+++ b/unusedcode.easy
@@ -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)
diff --git a/vcl/inc/svids.hrc b/vcl/inc/svids.hrc
index c94d2158d81c..1f60241d6716 100644
--- a/vcl/inc/svids.hrc
+++ b/vcl/inc/svids.hrc
@@ -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
diff --git a/vcl/inc/vcl/bmpacc.hxx b/vcl/inc/vcl/bmpacc.hxx
index 4b4416be8f31..3b973c81e36e 100644
--- a/vcl/inc/vcl/bmpacc.hxx
+++ b/vcl/inc/vcl/bmpacc.hxx
@@ -202,8 +202,6 @@ public:
void FillRect( const Rectangle& rRect );
void DrawRect( const Rectangle& rRect );
- void FillPolygon( const Polygon& rPoly );
-
private:
BitmapColor* mpLineColor;
diff --git a/vcl/inc/vcl/msgbox.hxx b/vcl/inc/vcl/msgbox.hxx
index bc8bf8e39bed..6d6c920717ad 100644
--- a/vcl/inc/vcl/msgbox.hxx
+++ b/vcl/inc/vcl/msgbox.hxx
@@ -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 );
diff --git a/vcl/source/gdi/bmpacc3.cxx b/vcl/source/gdi/bmpacc3.cxx
index 17b8db33c085..483e3b596a02 100644
--- a/vcl/source/gdi/bmpacc3.cxx
+++ b/vcl/source/gdi/bmpacc3.cxx
@@ -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: */
diff --git a/vcl/source/src/stdtext.src b/vcl/source/src/stdtext.src
index 9fd1487ce522..53d4fb5306b4 100644
--- a/vcl/source/src/stdtext.src
+++ b/vcl/source/src/stdtext.src
@@ -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.";
diff --git a/vcl/source/window/msgbox.cxx b/vcl/source/window/msgbox.cxx
index c9e56ef62559..042c629b03ed 100644
--- a/vcl/source/window/msgbox.cxx
+++ b/vcl/source/window/msgbox.cxx
@@ -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 ) {