diff options
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/edit.hxx | 2 | ||||
-rw-r--r-- | include/vcl/field.hxx | 4 | ||||
-rw-r--r-- | include/vcl/lstbox.hxx | 1 | ||||
-rw-r--r-- | include/vcl/tabctrl.hxx | 2 |
4 files changed, 0 insertions, 9 deletions
diff --git a/include/vcl/edit.hxx b/include/vcl/edit.hxx index 3d4d8a790aa4..2606eb27b9d0 100644 --- a/include/vcl/edit.hxx +++ b/include/vcl/edit.hxx @@ -235,8 +235,6 @@ public: virtual Size CalcSize(sal_Int32 nChars) const; sal_Int32 GetMaxVisChars() const; - sal_Int32 GetCharPos( const Point& rWindowPos ) const; - // shows a warning box saying "text too long, truncated" static void ShowTruncationWarning(weld::Widget* pParent); diff --git a/include/vcl/field.hxx b/include/vcl/field.hxx index 8f0d1b350771..974cd98e4999 100644 --- a/include/vcl/field.hxx +++ b/include/vcl/field.hxx @@ -202,7 +202,6 @@ public: FieldUnit GetUnit() const { return meUnit; } void SetCustomUnitText( const OUString& rStr ); const OUString& GetCustomUnitText() const { return maCustomUnitText; } - const OUString& GetCurUnitText() const { return maCurUnitText; } using NumericFormatter::SetMax; void SetMax( sal_Int64 nNewMax, FieldUnit eInUnit ); @@ -212,7 +211,6 @@ public: void SetMin( sal_Int64 nNewMin, FieldUnit eInUnit ); using NumericFormatter::GetMin; sal_Int64 GetMin( FieldUnit eOutUnit ) const; - void SetBaseValue( sal_Int64 nNewBase, FieldUnit eInUnit = FieldUnit::NONE ); sal_Int64 GetBaseValue() const; virtual void SetValue( sal_Int64 nNewValue, FieldUnit eInUnit ); @@ -224,8 +222,6 @@ public: virtual OUString CreateFieldText( sal_Int64 nValue ) const override; sal_Int64 GetCorrectedValue( FieldUnit eOutUnit ) const; - void SetCustomConvertHdl( const Link<MetricFormatter&,void>& rLink ) { maCustomConvertLink = rLink; } - static FieldUnit StringToMetric(const OUString &rMetricString); static bool TextToValue(const OUString& rStr, double& rValue, sal_Int64 nBaseValue, sal_uInt16 nDecDigits, const LocaleDataWrapper& rLocaleDataWrapper, FieldUnit eUnit); diff --git a/include/vcl/lstbox.hxx b/include/vcl/lstbox.hxx index 9c519b6919dc..9a0153d89e0a 100644 --- a/include/vcl/lstbox.hxx +++ b/include/vcl/lstbox.hxx @@ -170,7 +170,6 @@ public: OUString GetSelectedEntry( sal_Int32 nSelIndex = 0 ) const; sal_Int32 GetSelectedEntryPos( sal_Int32 nSelIndex = 0 ) const; - bool IsEntrySelected(const OUString& rStr) const; bool IsEntryPosSelected( sal_Int32 nPos ) const; void SetNoSelection(); diff --git a/include/vcl/tabctrl.hxx b/include/vcl/tabctrl.hxx index 789c200b159d..cf058d7a1e79 100644 --- a/include/vcl/tabctrl.hxx +++ b/include/vcl/tabctrl.hxx @@ -115,7 +115,6 @@ public: virtual Size GetOptimalSize() const override; void SetTabPageSizePixel( const Size& rSize ); - Size GetTabPageSizePixel() const; // pixel offset for the tab items, default is (0,0) void SetItemsOffset( const Point& rOffs ); @@ -124,7 +123,6 @@ public: void InsertPage( sal_uInt16 nPageId, const OUString& rText, sal_uInt16 nPos = TAB_APPEND ); void RemovePage( sal_uInt16 nPageId ); - void Clear(); void SetPageEnabled(sal_uInt16 nPageId, bool bEnable = true); void SetPageVisible(sal_uInt16 nPageId, bool bVisible = true); |