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

convert include/svtools/brwbox.hxx from String to OUString

Change-Id: I21bfd9ff242318a0cb5b589df9f59a20fc5c3730
üst e1381266
...@@ -113,7 +113,7 @@ public: ...@@ -113,7 +113,7 @@ public:
virtual void GrabTableFocus() = 0; virtual void GrabTableFocus() = 0;
// OutputDevice // OutputDevice
virtual sal_Bool GetGlyphBoundRects( const Point& rOrigin, const String& rStr, int nIndex, int nLen, int nBase, MetricVector& rVector ) = 0; virtual sal_Bool GetGlyphBoundRects( const Point& rOrigin, const OUString& rStr, int nIndex, int nLen, int nBase, MetricVector& rVector ) = 0;
// Window // Window
virtual Rectangle GetWindowExtentsRelative( Window *pRelativeWindow ) const = 0; virtual Rectangle GetWindowExtentsRelative( Window *pRelativeWindow ) const = 0;
......
...@@ -798,7 +798,7 @@ public: ...@@ -798,7 +798,7 @@ public:
virtual void GetAllSelectedColumns( css::uno::Sequence< sal_Int32 >& _rColumns ) const; virtual void GetAllSelectedColumns( css::uno::Sequence< sal_Int32 >& _rColumns ) const;
virtual sal_Bool IsCellVisible( sal_Int32 _nRow, sal_uInt16 _nColumn ) const; virtual sal_Bool IsCellVisible( sal_Int32 _nRow, sal_uInt16 _nColumn ) const;
virtual OUString GetAccessibleCellText(long _nRow, sal_uInt16 _nColPos) const; virtual OUString GetAccessibleCellText(long _nRow, sal_uInt16 _nColPos) const;
virtual sal_Bool GetGlyphBoundRects( const Point& rOrigin, const String& rStr, int nIndex, int nLen, int nBase, MetricVector& rVector ); virtual sal_Bool GetGlyphBoundRects( const Point& rOrigin, const OUString& rStr, int nIndex, int nLen, int nBase, MetricVector& rVector );
virtual Rectangle GetWindowExtentsRelative( Window *pRelativeWindow ) const; virtual Rectangle GetWindowExtentsRelative( Window *pRelativeWindow ) const;
virtual void GrabFocus(); virtual void GrabFocus();
virtual css::uno::Reference< css::accessibility::XAccessible > GetAccessible( sal_Bool bCreate = sal_True ); virtual css::uno::Reference< css::accessibility::XAccessible > GetAccessible( sal_Bool bCreate = sal_True );
......
...@@ -234,7 +234,7 @@ public: ...@@ -234,7 +234,7 @@ public:
virtual void GrabTableFocus(); virtual void GrabTableFocus();
// OutputDevice // OutputDevice
virtual sal_Bool GetGlyphBoundRects( const Point& rOrigin, const String& rStr, int nIndex, int nLen, int nBase, MetricVector& rVector ); virtual sal_Bool GetGlyphBoundRects( const Point& rOrigin, const OUString& rStr, int nIndex, int nLen, int nBase, MetricVector& rVector );
// Window // Window
virtual Rectangle GetWindowExtentsRelative( Window *pRelativeWindow ) const; virtual Rectangle GetWindowExtentsRelative( Window *pRelativeWindow ) const;
......
...@@ -526,7 +526,7 @@ OUString BrowseBox::GetAccessibleCellText(long _nRow, sal_uInt16 _nColPos) const ...@@ -526,7 +526,7 @@ OUString BrowseBox::GetAccessibleCellText(long _nRow, sal_uInt16 _nColPos) const
} }
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
sal_Bool BrowseBox::GetGlyphBoundRects( const Point& rOrigin, const String& rStr, int nIndex, int nLen, int nBase, MetricVector& rVector ) sal_Bool BrowseBox::GetGlyphBoundRects( const Point& rOrigin, const OUString& rStr, int nIndex, int nLen, int nBase, MetricVector& rVector )
{ {
return Control::GetGlyphBoundRects( rOrigin, rStr, nIndex, nLen, nBase, rVector ); return Control::GetGlyphBoundRects( rOrigin, rStr, nIndex, nLen, nBase, rVector );
} }
......
...@@ -1164,7 +1164,7 @@ void SvHeaderTabListBox::GrabTableFocus() ...@@ -1164,7 +1164,7 @@ void SvHeaderTabListBox::GrabTableFocus()
GrabFocus(); GrabFocus();
} }
// ----------------------------------------------------------------------- // -----------------------------------------------------------------------
sal_Bool SvHeaderTabListBox::GetGlyphBoundRects( const Point& rOrigin, const String& rStr, int nIndex, int nLen, int nBase, MetricVector& rVector ) sal_Bool SvHeaderTabListBox::GetGlyphBoundRects( const Point& rOrigin, const OUString& rStr, int nIndex, int nLen, int nBase, MetricVector& rVector )
{ {
return Control::GetGlyphBoundRects( rOrigin, rStr, nIndex, nLen, nBase, rVector ); return Control::GetGlyphBoundRects( rOrigin, rStr, nIndex, nLen, nBase, rVector );
} }
......
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