Kaydet (Commit) c37b72c1 authored tarafından Noel Grandin's avatar Noel Grandin

loplugin:countusersofdefaultparams in include/vcl

Change-Id: I16979e6d49e7f1ff7ea53194cfc64fddf27d00cf
Reviewed-on: https://gerrit.libreoffice.org/30841Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
üst 9259fcd4
...@@ -144,9 +144,9 @@ public: ...@@ -144,9 +144,9 @@ public:
bool Adjust( bool Adjust(
short nLuminancePercent, short nLuminancePercent,
short nContrastPercent, short nContrastPercent,
short nChannelRPercent = 0, short nChannelRPercent,
short nChannelGPercent = 0, short nChannelGPercent,
short nChannelBPercent = 0, short nChannelBPercent,
double fGamma = 1.0, double fGamma = 1.0,
bool bInvert = false ); bool bInvert = false );
......
...@@ -327,9 +327,9 @@ public: ...@@ -327,9 +327,9 @@ public:
bool Adjust( bool Adjust(
short nLuminancePercent, short nLuminancePercent,
short nContrastPercent, short nContrastPercent,
short nChannelRPercent = 0, short nChannelRPercent,
short nChannelGPercent = 0, short nChannelGPercent,
short nChannelBPercent = 0, short nChannelBPercent,
double fGamma = 1.0, double fGamma = 1.0,
bool bInvert = false, bool bInvert = false,
bool msoBrightness = false ); bool msoBrightness = false );
......
...@@ -275,12 +275,12 @@ public: ...@@ -275,12 +275,12 @@ public:
sal_uInt16 nFormat, sal_uInt16 nFormat,
const css::uno::Sequence< css::beans::PropertyValue >* pFilterData = nullptr ); const css::uno::Sequence< css::beans::PropertyValue >* pFilterData = nullptr );
sal_uInt16 ExportGraphic( const Graphic& rGraphic, const OUString& rPath, sal_uInt16 ExportGraphic( const Graphic& rGraphic, const OUString& rPath,
SvStream& rOStm, sal_uInt16 nFormat, SvStream& rOStm, sal_uInt16 nFormat,
const css::uno::Sequence< css::beans::PropertyValue >* pFilterData = nullptr ); const css::uno::Sequence< css::beans::PropertyValue >* pFilterData = nullptr );
sal_uInt16 CanImportGraphic( const INetURLObject& rPath, sal_uInt16 CanImportGraphic( const INetURLObject& rPath,
sal_uInt16 nFormat, sal_uInt16 nFormat,
sal_uInt16 * pDeterminedFormat = nullptr); sal_uInt16 * pDeterminedFormat);
sal_uInt16 ImportGraphic( Graphic& rGraphic, const INetURLObject& rPath, sal_uInt16 ImportGraphic( Graphic& rGraphic, const INetURLObject& rPath,
sal_uInt16 nFormat = GRFILTER_FORMAT_DONTKNOW, sal_uInt16 nFormat = GRFILTER_FORMAT_DONTKNOW,
...@@ -288,7 +288,7 @@ public: ...@@ -288,7 +288,7 @@ public:
sal_uInt16 CanImportGraphic( const OUString& rPath, SvStream& rStream, sal_uInt16 CanImportGraphic( const OUString& rPath, SvStream& rStream,
sal_uInt16 nFormat, sal_uInt16 nFormat,
sal_uInt16 * pDeterminedFormat = nullptr); sal_uInt16 * pDeterminedFormat);
sal_uInt16 ImportGraphic( Graphic& rGraphic, const OUString& rPath, sal_uInt16 ImportGraphic( Graphic& rGraphic, const OUString& rPath,
SvStream& rStream, SvStream& rStream,
......
...@@ -1311,7 +1311,7 @@ public: ...@@ -1311,7 +1311,7 @@ public:
SystemTextLayoutData GetSysTextLayoutData( const Point& rStartPt, const OUString& rStr, SystemTextLayoutData GetSysTextLayoutData( const Point& rStartPt, const OUString& rStr,
sal_Int32 nIndex, sal_Int32 nLen, sal_Int32 nIndex, sal_Int32 nLen,
const long* pDXAry = nullptr ) const; const long* pDXAry ) const;
SAL_DLLPRIVATE bool ImplIsAntiparallel() const ; SAL_DLLPRIVATE bool ImplIsAntiparallel() const ;
SAL_DLLPRIVATE void ReMirror( Point &rPoint ) const; SAL_DLLPRIVATE void ReMirror( Point &rPoint ) const;
......
...@@ -309,7 +309,7 @@ public: ...@@ -309,7 +309,7 @@ public:
@returns @returns
the outline item id of the new item the outline item id of the new item
*/ */
sal_Int32 CreateOutlineItem( sal_Int32 nParent, const OUString& rText, sal_Int32 nDestID = -1 ); sal_Int32 CreateOutlineItem( sal_Int32 nParent, const OUString& rText, sal_Int32 nDestID );
/** Create a new note on a page /** Create a new note on a page
......
...@@ -1017,7 +1017,7 @@ The following structure describes the permissions used in PDF security ...@@ -1017,7 +1017,7 @@ The following structure describes the permissions used in PDF security
@returns @returns
the outline item id of the new item the outline item id of the new item
*/ */
sal_Int32 CreateOutlineItem( sal_Int32 nParent, const OUString& rText, sal_Int32 nDestID = -1 ); sal_Int32 CreateOutlineItem( sal_Int32 nParent, const OUString& rText, sal_Int32 nDestID );
/** Set an outline item's parent /** Set an outline item's parent
......
...@@ -678,7 +678,7 @@ public: ...@@ -678,7 +678,7 @@ public:
*/ */
static css::uno::Any setRangeControlOpt( const OUString& i_rID, const OUString& i_rTitle, const OUString& i_rHelpId, static css::uno::Any setRangeControlOpt( const OUString& i_rID, const OUString& i_rTitle, const OUString& i_rHelpId,
const OUString& i_rProperty, sal_Int32 i_nValue, sal_Int32 i_nMinValue, const OUString& i_rProperty, sal_Int32 i_nValue, sal_Int32 i_nMinValue,
sal_Int32 i_nMaxValue, const UIControlOptions& i_rControlOptions = UIControlOptions()); sal_Int32 i_nMaxValue, const UIControlOptions& i_rControlOptions);
/** Show a string field /** Show a string field
......
...@@ -145,10 +145,10 @@ public: ...@@ -145,10 +145,10 @@ public:
void InsertItem( sal_uInt16 nId, vcl::Window* pWindow, long nSize, void InsertItem( sal_uInt16 nId, vcl::Window* pWindow, long nSize,
sal_uInt16 nPos, sal_uInt16 nIntoSetId, sal_uInt16 nPos, sal_uInt16 nIntoSetId,
SplitWindowItemFlags nBits = SplitWindowItemFlags::NONE ); SplitWindowItemFlags nBits );
void InsertItem( sal_uInt16 nId, long nSize, void InsertItem( sal_uInt16 nId, long nSize,
sal_uInt16 nPos, sal_uInt16 nIntoSetId, sal_uInt16 nPos, sal_uInt16 nIntoSetId,
SplitWindowItemFlags nBits = SplitWindowItemFlags::NONE ); SplitWindowItemFlags nBits );
void RemoveItem( sal_uInt16 nId ); void RemoveItem( sal_uInt16 nId );
void Clear(); void Clear();
......
...@@ -72,7 +72,7 @@ protected: ...@@ -72,7 +72,7 @@ protected:
SAL_DLLPRIVATE void ImplShowFocus(); SAL_DLLPRIVATE void ImplShowFocus();
SAL_DLLPRIVATE void ImplDrawItem(vcl::RenderContext& rRenderContext, ImplTabItem* pItem, SAL_DLLPRIVATE void ImplDrawItem(vcl::RenderContext& rRenderContext, ImplTabItem* pItem,
const Rectangle& rCurRect, bool bFirstInGroup, const Rectangle& rCurRect, bool bFirstInGroup,
bool bLastInGroup, bool bIsCurrentItem = false); bool bLastInGroup, bool bIsCurrentItem);
SAL_DLLPRIVATE void ImplFreeLayoutData(); SAL_DLLPRIVATE void ImplFreeLayoutData();
SAL_DLLPRIVATE bool ImplHandleKeyEvent( const KeyEvent& rKeyEvent ); SAL_DLLPRIVATE bool ImplHandleKeyEvent( const KeyEvent& rKeyEvent );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment