Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
0f60ab5e
Kaydet (Commit)
0f60ab5e
authored
Şub 28, 2014
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
editeng: sal_Bool->bool
Change-Id: I4fc276e320294d57eb667b6db8e5eff078bc28b3
üst
074a2af8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
77 additions
and
77 deletions
+77
-77
unoedprx.cxx
editeng/source/uno/unoedprx.cxx
+7
-7
unoviwou.cxx
editeng/source/uno/unoviwou.cxx
+10
-10
unoedprx.hxx
include/editeng/unoedprx.hxx
+5
-5
unoedsrc.hxx
include/editeng/unoedsrc.hxx
+10
-10
unoviwou.hxx
include/editeng/unoviwou.hxx
+5
-5
AccessibleText.cxx
sc/source/ui/Accessibility/AccessibleText.cxx
+20
-20
accessibility.cxx
starmath/source/accessibility.cxx
+15
-15
accessibility.hxx
starmath/source/accessibility.hxx
+5
-5
No files found.
editeng/source/uno/unoedprx.cxx
Dosyayı görüntüle @
0f60ab5e
...
@@ -1202,14 +1202,14 @@ Point SvxAccessibleTextEditViewAdapter::PixelToLogic( const Point& rPoint, const
...
@@ -1202,14 +1202,14 @@ Point SvxAccessibleTextEditViewAdapter::PixelToLogic( const Point& rPoint, const
return
mpViewForwarder
->
PixelToLogic
(
rPoint
,
rMapMode
);
return
mpViewForwarder
->
PixelToLogic
(
rPoint
,
rMapMode
);
}
}
sal_B
ool
SvxAccessibleTextEditViewAdapter
::
GetSelection
(
ESelection
&
rSel
)
const
b
ool
SvxAccessibleTextEditViewAdapter
::
GetSelection
(
ESelection
&
rSel
)
const
{
{
DBG_ASSERT
(
mpViewForwarder
,
"SvxAccessibleTextEditViewAdapter: no forwarder"
);
DBG_ASSERT
(
mpViewForwarder
,
"SvxAccessibleTextEditViewAdapter: no forwarder"
);
ESelection
aSelection
;
ESelection
aSelection
;
if
(
!
mpViewForwarder
->
GetSelection
(
aSelection
)
)
if
(
!
mpViewForwarder
->
GetSelection
(
aSelection
)
)
return
sal_F
alse
;
return
f
alse
;
SvxAccessibleTextIndex
aStartIndex
;
SvxAccessibleTextIndex
aStartIndex
;
SvxAccessibleTextIndex
aEndIndex
;
SvxAccessibleTextIndex
aEndIndex
;
...
@@ -1224,10 +1224,10 @@ sal_Bool SvxAccessibleTextEditViewAdapter::GetSelection( ESelection& rSel ) cons
...
@@ -1224,10 +1224,10 @@ sal_Bool SvxAccessibleTextEditViewAdapter::GetSelection( ESelection& rSel ) cons
rSel
=
ESelection
(
aStartIndex
.
GetParagraph
(),
aStartIndex
.
GetIndex
(),
rSel
=
ESelection
(
aStartIndex
.
GetParagraph
(),
aStartIndex
.
GetIndex
(),
aEndIndex
.
GetParagraph
(),
aEndIndex
.
GetIndex
()
);
aEndIndex
.
GetParagraph
(),
aEndIndex
.
GetIndex
()
);
return
sal_T
rue
;
return
t
rue
;
}
}
sal_B
ool
SvxAccessibleTextEditViewAdapter
::
SetSelection
(
const
ESelection
&
rSel
)
b
ool
SvxAccessibleTextEditViewAdapter
::
SetSelection
(
const
ESelection
&
rSel
)
{
{
DBG_ASSERT
(
mpViewForwarder
,
"SvxAccessibleTextEditViewAdapter: no forwarder"
);
DBG_ASSERT
(
mpViewForwarder
,
"SvxAccessibleTextEditViewAdapter: no forwarder"
);
...
@@ -1240,21 +1240,21 @@ sal_Bool SvxAccessibleTextEditViewAdapter::SetSelection( const ESelection& rSel
...
@@ -1240,21 +1240,21 @@ sal_Bool SvxAccessibleTextEditViewAdapter::SetSelection( const ESelection& rSel
return
mpViewForwarder
->
SetSelection
(
MakeEESelection
(
aStartIndex
,
aEndIndex
)
);
return
mpViewForwarder
->
SetSelection
(
MakeEESelection
(
aStartIndex
,
aEndIndex
)
);
}
}
sal_B
ool
SvxAccessibleTextEditViewAdapter
::
Copy
()
b
ool
SvxAccessibleTextEditViewAdapter
::
Copy
()
{
{
DBG_ASSERT
(
mpViewForwarder
,
"SvxAccessibleTextEditViewAdapter: no forwarder"
);
DBG_ASSERT
(
mpViewForwarder
,
"SvxAccessibleTextEditViewAdapter: no forwarder"
);
return
mpViewForwarder
->
Copy
();
return
mpViewForwarder
->
Copy
();
}
}
sal_B
ool
SvxAccessibleTextEditViewAdapter
::
Cut
()
b
ool
SvxAccessibleTextEditViewAdapter
::
Cut
()
{
{
DBG_ASSERT
(
mpViewForwarder
,
"SvxAccessibleTextEditViewAdapter: no forwarder"
);
DBG_ASSERT
(
mpViewForwarder
,
"SvxAccessibleTextEditViewAdapter: no forwarder"
);
return
mpViewForwarder
->
Cut
();
return
mpViewForwarder
->
Cut
();
}
}
sal_B
ool
SvxAccessibleTextEditViewAdapter
::
Paste
()
b
ool
SvxAccessibleTextEditViewAdapter
::
Paste
()
{
{
DBG_ASSERT
(
mpViewForwarder
,
"SvxAccessibleTextEditViewAdapter: no forwarder"
);
DBG_ASSERT
(
mpViewForwarder
,
"SvxAccessibleTextEditViewAdapter: no forwarder"
);
...
...
editeng/source/uno/unoviwou.cxx
Dosyayı görüntüle @
0f60ab5e
...
@@ -124,34 +124,34 @@ Point SvxDrawOutlinerViewForwarder::PixelToLogic( const Point& rPoint, const Map
...
@@ -124,34 +124,34 @@ Point SvxDrawOutlinerViewForwarder::PixelToLogic( const Point& rPoint, const Map
return
Point
();
return
Point
();
}
}
sal_B
ool
SvxDrawOutlinerViewForwarder
::
GetSelection
(
ESelection
&
rSelection
)
const
b
ool
SvxDrawOutlinerViewForwarder
::
GetSelection
(
ESelection
&
rSelection
)
const
{
{
rSelection
=
mrOutlinerView
.
GetSelection
();
rSelection
=
mrOutlinerView
.
GetSelection
();
return
sal_T
rue
;
return
t
rue
;
}
}
sal_B
ool
SvxDrawOutlinerViewForwarder
::
SetSelection
(
const
ESelection
&
rSelection
)
b
ool
SvxDrawOutlinerViewForwarder
::
SetSelection
(
const
ESelection
&
rSelection
)
{
{
mrOutlinerView
.
SetSelection
(
rSelection
);
mrOutlinerView
.
SetSelection
(
rSelection
);
return
sal_T
rue
;
return
t
rue
;
}
}
sal_B
ool
SvxDrawOutlinerViewForwarder
::
Copy
()
b
ool
SvxDrawOutlinerViewForwarder
::
Copy
()
{
{
mrOutlinerView
.
Copy
();
mrOutlinerView
.
Copy
();
return
sal_T
rue
;
return
t
rue
;
}
}
sal_B
ool
SvxDrawOutlinerViewForwarder
::
Cut
()
b
ool
SvxDrawOutlinerViewForwarder
::
Cut
()
{
{
mrOutlinerView
.
Cut
();
mrOutlinerView
.
Cut
();
return
sal_T
rue
;
return
t
rue
;
}
}
sal_B
ool
SvxDrawOutlinerViewForwarder
::
Paste
()
b
ool
SvxDrawOutlinerViewForwarder
::
Paste
()
{
{
mrOutlinerView
.
Paste
();
mrOutlinerView
.
Paste
();
return
sal_T
rue
;
return
t
rue
;
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
include/editeng/unoedprx.hxx
Dosyayı görüntüle @
0f60ab5e
...
@@ -123,11 +123,11 @@ public:
...
@@ -123,11 +123,11 @@ public:
virtual
Point
PixelToLogic
(
const
Point
&
rPoint
,
const
MapMode
&
rMapMode
)
const
;
virtual
Point
PixelToLogic
(
const
Point
&
rPoint
,
const
MapMode
&
rMapMode
)
const
;
// SvxEditViewForwarder interface
// SvxEditViewForwarder interface
virtual
sal_Bool
GetSelection
(
ESelection
&
rSelection
)
const
;
virtual
bool
GetSelection
(
ESelection
&
rSelection
)
const
;
virtual
sal_Bool
SetSelection
(
const
ESelection
&
rSelection
);
virtual
bool
SetSelection
(
const
ESelection
&
rSelection
);
virtual
sal_Bool
Copy
();
virtual
bool
Copy
();
virtual
sal_Bool
Cut
();
virtual
bool
Cut
();
virtual
sal_Bool
Paste
();
virtual
bool
Paste
();
void
SetForwarder
(
SvxEditViewForwarder
&
,
SvxAccessibleTextAdapter
&
);
void
SetForwarder
(
SvxEditViewForwarder
&
,
SvxAccessibleTextAdapter
&
);
...
...
include/editeng/unoedsrc.hxx
Dosyayı görüntüle @
0f60ab5e
...
@@ -503,37 +503,37 @@ public:
...
@@ -503,37 +503,37 @@ public:
@param rSelection
@param rSelection
Contains the current selection after method call
Contains the current selection after method call
@return
sal_F
alse, if there is no view or no selection (the empty selection _is_ a selection)
@return
f
alse, if there is no view or no selection (the empty selection _is_ a selection)
*/
*/
virtual
sal_B
ool
GetSelection
(
ESelection
&
rSelection
)
const
=
0
;
virtual
b
ool
GetSelection
(
ESelection
&
rSelection
)
const
=
0
;
/** Set selection in view.
/** Set selection in view.
@param rSelection
@param rSelection
The selection to set
The selection to set
@return
sal_F
alse, if there is no view or selection is invalid
@return
f
alse, if there is no view or selection is invalid
*/
*/
virtual
sal_B
ool
SetSelection
(
const
ESelection
&
rSelection
)
=
0
;
virtual
b
ool
SetSelection
(
const
ESelection
&
rSelection
)
=
0
;
/** Copy current selection to clipboard.
/** Copy current selection to clipboard.
@return
sal_F
alse if no selection or no view (the empty selection _is_ a selection)
@return
f
alse if no selection or no view (the empty selection _is_ a selection)
*/
*/
virtual
sal_B
ool
Copy
()
=
0
;
virtual
b
ool
Copy
()
=
0
;
/** Cut current selection to clipboard.
/** Cut current selection to clipboard.
@eturn
sal_F
alse if no selection or no view (the empty selection _is_ a selection)
@eturn
b
alse if no selection or no view (the empty selection _is_ a selection)
*/
*/
virtual
sal_B
ool
Cut
()
=
0
;
virtual
b
ool
Cut
()
=
0
;
/** Paste clipboard into current selection.
/** Paste clipboard into current selection.
@return
sal_F
alse if no view or no selection (the empty selection _is_ a selection)
@return
f
alse if no view or no selection (the empty selection _is_ a selection)
*/
*/
virtual
sal_B
ool
Paste
()
=
0
;
virtual
b
ool
Paste
()
=
0
;
virtual
sal_Bool
IsWrongSpelledWordAtPos
(
sal_Int32
,
sal_Int32
)
{
return
sal_False
;
};
virtual
sal_Bool
IsWrongSpelledWordAtPos
(
sal_Int32
,
sal_Int32
)
{
return
sal_False
;
};
virtual
sal_Bool
IsShapeParaFocusable
(
)
{
return
sal_True
;
};
virtual
sal_Bool
IsShapeParaFocusable
(
)
{
return
sal_True
;
};
...
...
include/editeng/unoviwou.hxx
Dosyayı görüntüle @
0f60ab5e
...
@@ -45,11 +45,11 @@ public:
...
@@ -45,11 +45,11 @@ public:
virtual
Point
LogicToPixel
(
const
Point
&
rPoint
,
const
MapMode
&
rMapMode
)
const
;
virtual
Point
LogicToPixel
(
const
Point
&
rPoint
,
const
MapMode
&
rMapMode
)
const
;
virtual
Point
PixelToLogic
(
const
Point
&
rPoint
,
const
MapMode
&
rMapMode
)
const
;
virtual
Point
PixelToLogic
(
const
Point
&
rPoint
,
const
MapMode
&
rMapMode
)
const
;
virtual
sal_Bool
GetSelection
(
ESelection
&
rSelection
)
const
;
virtual
bool
GetSelection
(
ESelection
&
rSelection
)
const
;
virtual
sal_Bool
SetSelection
(
const
ESelection
&
rSelection
);
virtual
bool
SetSelection
(
const
ESelection
&
rSelection
);
virtual
sal_Bool
Copy
();
virtual
bool
Copy
();
virtual
sal_Bool
Cut
();
virtual
bool
Cut
();
virtual
sal_Bool
Paste
();
virtual
bool
Paste
();
};
};
#endif
#endif
...
...
sc/source/ui/Accessibility/AccessibleText.cxx
Dosyayı görüntüle @
0f60ab5e
...
@@ -560,11 +560,11 @@ public:
...
@@ -560,11 +560,11 @@ public:
virtual
Rectangle
GetVisArea
()
const
;
virtual
Rectangle
GetVisArea
()
const
;
virtual
Point
LogicToPixel
(
const
Point
&
rPoint
,
const
MapMode
&
rMapMode
)
const
;
virtual
Point
LogicToPixel
(
const
Point
&
rPoint
,
const
MapMode
&
rMapMode
)
const
;
virtual
Point
PixelToLogic
(
const
Point
&
rPoint
,
const
MapMode
&
rMapMode
)
const
;
virtual
Point
PixelToLogic
(
const
Point
&
rPoint
,
const
MapMode
&
rMapMode
)
const
;
virtual
sal_Bool
GetSelection
(
ESelection
&
rSelection
)
const
;
virtual
bool
GetSelection
(
ESelection
&
rSelection
)
const
;
virtual
sal_Bool
SetSelection
(
const
ESelection
&
rSelection
);
virtual
bool
SetSelection
(
const
ESelection
&
rSelection
);
virtual
sal_Bool
Copy
();
virtual
bool
Copy
();
virtual
sal_Bool
Cut
();
virtual
bool
Cut
();
virtual
sal_Bool
Paste
();
virtual
bool
Paste
();
void
GrabFocus
();
void
GrabFocus
();
...
@@ -625,13 +625,13 @@ Point ScEditViewForwarder::PixelToLogic( const Point& rPoint, const MapMode& rMa
...
@@ -625,13 +625,13 @@ Point ScEditViewForwarder::PixelToLogic( const Point& rPoint, const MapMode& rMa
return
Point
();
return
Point
();
}
}
sal_B
ool
ScEditViewForwarder
::
GetSelection
(
ESelection
&
rSelection
)
const
b
ool
ScEditViewForwarder
::
GetSelection
(
ESelection
&
rSelection
)
const
{
{
sal_B
ool
bResult
(
false
);
b
ool
bResult
(
false
);
if
(
IsValid
())
if
(
IsValid
())
{
{
rSelection
=
mpEditView
->
GetSelection
();
rSelection
=
mpEditView
->
GetSelection
();
bResult
=
sal_T
rue
;
bResult
=
t
rue
;
}
}
else
else
{
{
...
@@ -640,13 +640,13 @@ sal_Bool ScEditViewForwarder::GetSelection( ESelection& rSelection ) const
...
@@ -640,13 +640,13 @@ sal_Bool ScEditViewForwarder::GetSelection( ESelection& rSelection ) const
return
bResult
;
return
bResult
;
}
}
sal_B
ool
ScEditViewForwarder
::
SetSelection
(
const
ESelection
&
rSelection
)
b
ool
ScEditViewForwarder
::
SetSelection
(
const
ESelection
&
rSelection
)
{
{
sal_B
ool
bResult
(
false
);
b
ool
bResult
(
false
);
if
(
IsValid
())
if
(
IsValid
())
{
{
mpEditView
->
SetSelection
(
rSelection
);
mpEditView
->
SetSelection
(
rSelection
);
bResult
=
sal_T
rue
;
bResult
=
t
rue
;
}
}
else
else
{
{
...
@@ -655,13 +655,13 @@ sal_Bool ScEditViewForwarder::SetSelection( const ESelection& rSelection )
...
@@ -655,13 +655,13 @@ sal_Bool ScEditViewForwarder::SetSelection( const ESelection& rSelection )
return
bResult
;
return
bResult
;
}
}
sal_B
ool
ScEditViewForwarder
::
Copy
()
b
ool
ScEditViewForwarder
::
Copy
()
{
{
sal_B
ool
bResult
(
false
);
b
ool
bResult
(
false
);
if
(
IsValid
())
if
(
IsValid
())
{
{
mpEditView
->
Copy
();
mpEditView
->
Copy
();
bResult
=
sal_T
rue
;
bResult
=
t
rue
;
}
}
else
else
{
{
...
@@ -670,13 +670,13 @@ sal_Bool ScEditViewForwarder::Copy()
...
@@ -670,13 +670,13 @@ sal_Bool ScEditViewForwarder::Copy()
return
bResult
;
return
bResult
;
}
}
sal_B
ool
ScEditViewForwarder
::
Cut
()
b
ool
ScEditViewForwarder
::
Cut
()
{
{
sal_B
ool
bResult
(
false
);
b
ool
bResult
(
false
);
if
(
IsValid
())
if
(
IsValid
())
{
{
mpEditView
->
Cut
();
mpEditView
->
Cut
();
bResult
=
sal_T
rue
;
bResult
=
t
rue
;
}
}
else
else
{
{
...
@@ -685,13 +685,13 @@ sal_Bool ScEditViewForwarder::Cut()
...
@@ -685,13 +685,13 @@ sal_Bool ScEditViewForwarder::Cut()
return
bResult
;
return
bResult
;
}
}
sal_B
ool
ScEditViewForwarder
::
Paste
()
b
ool
ScEditViewForwarder
::
Paste
()
{
{
sal_B
ool
bResult
(
false
);
b
ool
bResult
(
false
);
if
(
IsValid
())
if
(
IsValid
())
{
{
mpEditView
->
Paste
();
mpEditView
->
Paste
();
bResult
=
sal_T
rue
;
bResult
=
t
rue
;
}
}
else
else
{
{
...
...
starmath/source/accessibility.cxx
Dosyayı görüntüle @
0f60ab5e
...
@@ -1561,62 +1561,62 @@ Point SmEditViewForwarder::PixelToLogic( const Point& rPoint, const MapMode& rMa
...
@@ -1561,62 +1561,62 @@ Point SmEditViewForwarder::PixelToLogic( const Point& rPoint, const MapMode& rMa
return
Point
();
return
Point
();
}
}
sal_B
ool
SmEditViewForwarder
::
GetSelection
(
ESelection
&
rSelection
)
const
b
ool
SmEditViewForwarder
::
GetSelection
(
ESelection
&
rSelection
)
const
{
{
sal_Bool
bRes
=
sal_F
alse
;
bool
bRes
=
f
alse
;
EditView
*
pEditView
=
rEditAcc
.
GetEditView
();
EditView
*
pEditView
=
rEditAcc
.
GetEditView
();
if
(
pEditView
)
if
(
pEditView
)
{
{
rSelection
=
pEditView
->
GetSelection
();
rSelection
=
pEditView
->
GetSelection
();
bRes
=
sal_T
rue
;
bRes
=
t
rue
;
}
}
return
bRes
;
return
bRes
;
}
}
sal_B
ool
SmEditViewForwarder
::
SetSelection
(
const
ESelection
&
rSelection
)
b
ool
SmEditViewForwarder
::
SetSelection
(
const
ESelection
&
rSelection
)
{
{
sal_Bool
bRes
=
sal_F
alse
;
bool
bRes
=
f
alse
;
EditView
*
pEditView
=
rEditAcc
.
GetEditView
();
EditView
*
pEditView
=
rEditAcc
.
GetEditView
();
if
(
pEditView
)
if
(
pEditView
)
{
{
pEditView
->
SetSelection
(
rSelection
);
pEditView
->
SetSelection
(
rSelection
);
bRes
=
sal_T
rue
;
bRes
=
t
rue
;
}
}
return
bRes
;
return
bRes
;
}
}
sal_B
ool
SmEditViewForwarder
::
Copy
()
b
ool
SmEditViewForwarder
::
Copy
()
{
{
sal_Bool
bRes
=
sal_F
alse
;
bool
bRes
=
f
alse
;
EditView
*
pEditView
=
rEditAcc
.
GetEditView
();
EditView
*
pEditView
=
rEditAcc
.
GetEditView
();
if
(
pEditView
)
if
(
pEditView
)
{
{
pEditView
->
Copy
();
pEditView
->
Copy
();
bRes
=
sal_T
rue
;
bRes
=
t
rue
;
}
}
return
bRes
;
return
bRes
;
}
}
sal_B
ool
SmEditViewForwarder
::
Cut
()
b
ool
SmEditViewForwarder
::
Cut
()
{
{
sal_Bool
bRes
=
sal_F
alse
;
bool
bRes
=
f
alse
;
EditView
*
pEditView
=
rEditAcc
.
GetEditView
();
EditView
*
pEditView
=
rEditAcc
.
GetEditView
();
if
(
pEditView
)
if
(
pEditView
)
{
{
pEditView
->
Cut
();
pEditView
->
Cut
();
bRes
=
sal_T
rue
;
bRes
=
t
rue
;
}
}
return
bRes
;
return
bRes
;
}
}
sal_B
ool
SmEditViewForwarder
::
Paste
()
b
ool
SmEditViewForwarder
::
Paste
()
{
{
sal_Bool
bRes
=
sal_F
alse
;
bool
bRes
=
f
alse
;
EditView
*
pEditView
=
rEditAcc
.
GetEditView
();
EditView
*
pEditView
=
rEditAcc
.
GetEditView
();
if
(
pEditView
)
if
(
pEditView
)
{
{
pEditView
->
Paste
();
pEditView
->
Paste
();
bRes
=
sal_T
rue
;
bRes
=
t
rue
;
}
}
return
bRes
;
return
bRes
;
}
}
...
...
starmath/source/accessibility.hxx
Dosyayı görüntüle @
0f60ab5e
...
@@ -274,11 +274,11 @@ public:
...
@@ -274,11 +274,11 @@ public:
virtual
Point
LogicToPixel
(
const
Point
&
rPoint
,
const
MapMode
&
rMapMode
)
const
;
virtual
Point
LogicToPixel
(
const
Point
&
rPoint
,
const
MapMode
&
rMapMode
)
const
;
virtual
Point
PixelToLogic
(
const
Point
&
rPoint
,
const
MapMode
&
rMapMode
)
const
;
virtual
Point
PixelToLogic
(
const
Point
&
rPoint
,
const
MapMode
&
rMapMode
)
const
;
virtual
sal_Bool
GetSelection
(
ESelection
&
rSelection
)
const
;
virtual
bool
GetSelection
(
ESelection
&
rSelection
)
const
;
virtual
sal_Bool
SetSelection
(
const
ESelection
&
rSelection
);
virtual
bool
SetSelection
(
const
ESelection
&
rSelection
);
virtual
sal_Bool
Copy
();
virtual
bool
Copy
();
virtual
sal_Bool
Cut
();
virtual
bool
Cut
();
virtual
sal_Bool
Paste
();
virtual
bool
Paste
();
};
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment