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
5efac16b
Kaydet (Commit)
5efac16b
authored
Şub 07, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:deletedspecial
Change-Id: Ia5cdc216ef4e5ebb11709fa1079e70c9ac2ff360
üst
913b112d
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
30 additions
and
57 deletions
+30
-57
editattr.hxx
editeng/source/editeng/editattr.hxx
+1
-1
editdoc.hxx
editeng/source/editeng/editdoc.hxx
+1
-1
editobj2.hxx
editeng/source/editeng/editobj2.hxx
+1
-2
textconv.hxx
editeng/source/editeng/textconv.hxx
+2
-3
paralist.cxx
editeng/source/outliner/paralist.cxx
+0
-11
AccessibleEditableTextPara.hxx
include/editeng/AccessibleEditableTextPara.hxx
+2
-4
AccessibleImageBullet.hxx
include/editeng/AccessibleImageBullet.hxx
+2
-6
AccessibleStaticTextBase.hxx
include/editeng/AccessibleStaticTextBase.hxx
+2
-5
editeng.hxx
include/editeng/editeng.hxx
+2
-2
editobj.hxx
include/editeng/editobj.hxx
+1
-1
editview.hxx
include/editeng/editview.hxx
+2
-2
hangulhanja.hxx
include/editeng/hangulhanja.hxx
+2
-3
outliner.hxx
include/editeng/outliner.hxx
+3
-4
svxacorr.hxx
include/editeng/svxacorr.hxx
+2
-2
txtrange.hxx
include/editeng/txtrange.hxx
+1
-1
unoedprx.hxx
include/editeng/unoedprx.hxx
+2
-3
unolingu.hxx
include/editeng/unolingu.hxx
+4
-6
No files found.
editeng/source/editeng/editattr.hxx
Dosyayı görüntüle @
5efac16b
...
...
@@ -363,7 +363,7 @@ class EditCharAttribField: public EditCharAttrib
Color
*
pTxtColor
;
Color
*
pFldColor
;
EditCharAttribField
&
operator
=
(
const
EditCharAttribField
&
rAttr
)
const
;
EditCharAttribField
&
operator
=
(
const
EditCharAttribField
&
rAttr
)
SAL_DELETED_FUNCTION
;
public
:
EditCharAttribField
(
const
SvxFieldItem
&
rAttr
,
sal_uInt16
nPos
);
...
...
editeng/source/editeng/editdoc.hxx
Dosyayı görüntüle @
5efac16b
...
...
@@ -606,7 +606,7 @@ private:
bool
bVisible
:
1
;
// Belongs to the node!
bool
bForceRepaint
:
1
;
ParaPortion
(
const
ParaPortion
&
);
ParaPortion
(
const
ParaPortion
&
)
SAL_DELETED_FUNCTION
;
public
:
ParaPortion
(
ContentNode
*
pNode
);
...
...
editeng/source/editeng/editobj2.hxx
Dosyayı görüntüle @
5efac16b
...
...
@@ -50,8 +50,7 @@ private:
sal_uInt16
nStart
;
sal_uInt16
nEnd
;
XEditAttribute
();
XEditAttribute
(
const
XEditAttribute
&
rCopyFrom
);
XEditAttribute
(
const
XEditAttribute
&
rCopyFrom
)
SAL_DELETED_FUNCTION
;
public
:
XEditAttribute
(
const
SfxPoolItem
&
rAttr
,
sal_uInt16
nStart
,
sal_uInt16
nEnd
);
...
...
editeng/source/editeng/textconv.hxx
Dosyayı görüntüle @
5efac16b
...
...
@@ -68,9 +68,8 @@ class TextConvWrapper : public editeng::HangulHanjaConversion
ESelection
*
pESelection
);
void
ChangeText_impl
(
const
OUString
&
rNewText
,
bool
bKeepAttributes
);
// Forbidden and not implemented.
TextConvWrapper
(
const
TextConvWrapper
&
);
TextConvWrapper
&
operator
=
(
const
TextConvWrapper
&
);
TextConvWrapper
(
const
TextConvWrapper
&
)
SAL_DELETED_FUNCTION
;
TextConvWrapper
&
operator
=
(
const
TextConvWrapper
&
)
SAL_DELETED_FUNCTION
;
protected
:
virtual
void
GetNextPortion
(
OUString
&
/* [out] */
rNextPortion
,
...
...
editeng/source/outliner/paralist.cxx
Dosyayı görüntüle @
5efac16b
...
...
@@ -66,17 +66,6 @@ Paragraph::Paragraph( sal_Int16 nDDepth )
bVisible
=
true
;
}
Paragraph
::
Paragraph
(
const
Paragraph
&
rPara
)
:
ParagraphData
(
rPara
)
,
aBulText
(
rPara
.
aBulText
)
,
aBulSize
(
rPara
.
aBulSize
)
{
nDepth
=
rPara
.
nDepth
;
nFlags
=
rPara
.
nFlags
;
bVisible
=
rPara
.
bVisible
;
}
Paragraph
::
Paragraph
(
const
ParagraphData
&
rData
)
:
nFlags
(
0
)
,
aBulSize
(
-
1
,
-
1
)
...
...
include/editeng/AccessibleEditableTextPara.hxx
Dosyayı görüntüle @
5efac16b
...
...
@@ -286,10 +286,8 @@ namespace accessibility
void
TextChanged
();
private
:
// declared, but not defined
AccessibleEditableTextPara
(
const
AccessibleEditableTextPara
&
);
AccessibleEditableTextPara
&
operator
=
(
const
AccessibleEditableTextPara
&
);
AccessibleEditableTextPara
(
const
AccessibleEditableTextPara
&
)
SAL_DELETED_FUNCTION
;
AccessibleEditableTextPara
&
operator
=
(
const
AccessibleEditableTextPara
&
)
SAL_DELETED_FUNCTION
;
/** Calculate character range of similar attributes
...
...
include/editeng/AccessibleImageBullet.hxx
Dosyayı görüntüle @
5efac16b
...
...
@@ -148,10 +148,8 @@ namespace accessibility
void
FireEvent
(
const
sal_Int16
nEventId
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
rNewValue
=
::
com
::
sun
::
star
::
uno
::
Any
(),
const
::
com
::
sun
::
star
::
uno
::
Any
&
rOldValue
=
::
com
::
sun
::
star
::
uno
::
Any
()
)
const
;
private
:
// declared, but not defined
AccessibleImageBullet
(
const
AccessibleImageBullet
&
);
AccessibleImageBullet
&
operator
=
(
const
AccessibleImageBullet
&
);
AccessibleImageBullet
(
const
AccessibleImageBullet
&
)
SAL_DELETED_FUNCTION
;
AccessibleImageBullet
&
operator
=
(
const
AccessibleImageBullet
&
)
SAL_DELETED_FUNCTION
;
// syntactic sugar for FireEvent
void
GotPropertyEvent
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
rNewValue
,
const
sal_Int16
nEventId
)
const
;
...
...
@@ -200,8 +198,6 @@ namespace accessibility
// the current state set (updated from SetState/UnSetState and guarded by solar mutex)
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessibleStateSet
>
mxStateSet
;
mutable
osl
::
Mutex
maMutex
;
/// The shape we're the accessible for (unguarded)
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessible
>
mxParent
;
...
...
include/editeng/AccessibleStaticTextBase.hxx
Dosyayı görüntüle @
5efac16b
...
...
@@ -106,11 +106,8 @@ namespace accessibility
virtual
~
AccessibleStaticTextBase
();
private
:
// declared, but not defined
EDITENG_DLLPRIVATE
AccessibleStaticTextBase
(
const
AccessibleStaticTextBase
&
);
// declared, but not defined
EDITENG_DLLPRIVATE
AccessibleStaticTextBase
&
operator
=
(
const
AccessibleStaticTextBase
&
);
AccessibleStaticTextBase
(
const
AccessibleStaticTextBase
&
)
SAL_DELETED_FUNCTION
;
AccessibleStaticTextBase
&
operator
=
(
const
AccessibleStaticTextBase
&
)
SAL_DELETED_FUNCTION
;
public
:
...
...
include/editeng/editeng.hxx
Dosyayı görüntüle @
5efac16b
...
...
@@ -140,8 +140,8 @@ public:
private
:
ImpEditEngine
*
pImpEditEngine
;
EDITENG_DLLPRIVATE
EditEngine
(
const
EditEngine
&
)
;
EDITENG_DLLPRIVATE
EditEngine
&
operator
=
(
const
EditEngine
&
)
;
EditEngine
(
const
EditEngine
&
)
SAL_DELETED_FUNCTION
;
EditEngine
&
operator
=
(
const
EditEngine
&
)
SAL_DELETED_FUNCTION
;
EDITENG_DLLPRIVATE
bool
PostKeyEvent
(
const
KeyEvent
&
rKeyEvent
,
EditView
*
pView
,
vcl
::
Window
*
pFrameWin
=
NULL
);
EDITENG_DLLPRIVATE
void
CursorMoved
(
ContentNode
*
pPrevNode
);
...
...
include/editeng/editobj.hxx
Dosyayı görüntüle @
5efac16b
...
...
@@ -63,7 +63,7 @@ class EDITENG_DLLPUBLIC EditTextObject : public SfxItemPoolUser
EditTextObjectImpl
*
mpImpl
;
E
DITENG_DLLPRIVATE
EditTextObject
&
operator
=
(
const
EditTextObject
&
)
;
E
ditTextObject
&
operator
=
(
const
EditTextObject
&
)
SAL_DELETED_FUNCTION
;
EditTextObject
();
// disabled
...
...
include/editeng/editview.hxx
Dosyayı görüntüle @
5efac16b
...
...
@@ -81,8 +81,8 @@ private:
ImpEditView
*
pImpEditView
;
OUString
aDicNameSingle
;
E
DITENG_DLLPRIVATE
EditView
(
const
EditView
&
)
;
E
DITENG_DLLPRIVATE
EditView
&
operator
=
(
const
EditView
&
)
;
E
ditView
(
const
EditView
&
)
SAL_DELETED_FUNCTION
;
E
ditView
&
operator
=
(
const
EditView
&
)
SAL_DELETED_FUNCTION
;
public
:
EditView
(
EditEngine
*
pEng
,
vcl
::
Window
*
pWindow
);
...
...
include/editeng/hangulhanja.hxx
Dosyayı görüntüle @
5efac16b
...
...
@@ -102,9 +102,8 @@ namespace editeng
static
bool
m_bTryBothDirectionsSave
;
static
ConversionDirection
m_ePrimaryConversionDirectionSave
;
// Forbidden and not implemented.
HangulHanjaConversion
(
const
HangulHanjaConversion
&
);
HangulHanjaConversion
&
operator
=
(
const
HangulHanjaConversion
&
);
HangulHanjaConversion
(
const
HangulHanjaConversion
&
)
SAL_DELETED_FUNCTION
;
HangulHanjaConversion
&
operator
=
(
const
HangulHanjaConversion
&
)
SAL_DELETED_FUNCTION
;
public
:
HangulHanjaConversion
(
...
...
include/editeng/outliner.hxx
Dosyayı görüntüle @
5efac16b
...
...
@@ -120,7 +120,7 @@ private:
friend
class
OutlinerUndoCheckPara
;
friend
class
OutlinerUndoChangeParaFlags
;
Paragraph
&
operator
=
(
const
Paragraph
&
rPara
);
Paragraph
&
operator
=
(
const
Paragraph
&
rPara
)
SAL_DELETED_FUNCTION
;
sal_uInt16
nFlags
;
OUString
aBulText
;
...
...
@@ -134,7 +134,7 @@ private:
const
OUString
&
GetText
()
const
{
return
aBulText
;
}
Paragraph
(
sal_Int16
nDepth
);
Paragraph
(
const
Paragraph
&
);
Paragraph
(
const
Paragraph
&
)
SAL_DELETED_FUNCTION
;
Paragraph
(
const
ParagraphData
&
);
~
Paragraph
();
...
...
@@ -482,8 +482,7 @@ private:
sal_Int32
nPos
;
bool
bSimpleClick
;
EditFieldInfo
();
EditFieldInfo
(
const
EditFieldInfo
&
);
EditFieldInfo
(
const
EditFieldInfo
&
)
SAL_DELETED_FUNCTION
;
SdrPage
*
mpSdrPage
;
...
...
include/editeng/svxacorr.hxx
Dosyayı görüntüle @
5efac16b
...
...
@@ -135,8 +135,8 @@ class EDITENG_DLLPUBLIC SvxAutocorrWordList
struct
Impl
;
Impl
*
mpImpl
;
SvxAutocorrWordList
(
const
SvxAutocorrWordList
&
)
;
// disabled
const
SvxAutocorrWordList
&
operator
=
(
const
SvxAutocorrWordList
&
)
;
// disabled
SvxAutocorrWordList
(
const
SvxAutocorrWordList
&
)
SAL_DELETED_FUNCTION
;
const
SvxAutocorrWordList
&
operator
=
(
const
SvxAutocorrWordList
&
)
SAL_DELETED_FUNCTION
;
const
SvxAutocorrWord
*
WordMatches
(
const
SvxAutocorrWord
*
pFnd
,
const
OUString
&
rTxt
,
...
...
include/editeng/txtrange.hxx
Dosyayı görüntüle @
5efac16b
...
...
@@ -57,7 +57,7 @@ class EDITENG_DLLPUBLIC TextRanger
// FALSE: Objekt flow (StarWriter);
bool
bVertical
:
1
;
// for vertical writing mode
TextRanger
(
const
TextRanger
&
)
;
// not implemented
TextRanger
(
const
TextRanger
&
)
SAL_DELETED_FUNCTION
;
const
Rectangle
&
_GetBoundRect
();
public
:
TextRanger
(
const
basegfx
::
B2DPolyPolygon
&
rPolyPolygon
,
...
...
include/editeng/unoedprx.hxx
Dosyayı görüntüle @
5efac16b
...
...
@@ -156,9 +156,8 @@ public:
bool
IsValid
()
const
{
return
mbEditSourceValid
;}
private
:
// declared, but not defined
SvxEditSourceAdapter
(
const
SvxEditSourceAdapter
&
);
SvxEditSourceAdapter
&
operator
=
(
const
SvxEditSourceAdapter
&
);
SvxEditSourceAdapter
(
const
SvxEditSourceAdapter
&
)
SAL_DELETED_FUNCTION
;
SvxEditSourceAdapter
&
operator
=
(
const
SvxEditSourceAdapter
&
)
SAL_DELETED_FUNCTION
;
::
std
::
unique_ptr
<
SvxEditSource
>
mpAdaptee
;
...
...
include/editeng/unolingu.hxx
Dosyayı görüntüle @
5efac16b
...
...
@@ -80,9 +80,8 @@ class EDITENG_DLLPUBLIC LinguMgr
static
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
linguistic2
::
XDictionary
>
GetChangeAll
();
// disallow access to copy-constructor and assignment-operator
LinguMgr
(
const
LinguMgr
&
);
LinguMgr
&
operator
=
(
const
LinguMgr
&
);
LinguMgr
(
const
LinguMgr
&
)
SAL_DELETED_FUNCTION
;
LinguMgr
&
operator
=
(
const
LinguMgr
&
)
SAL_DELETED_FUNCTION
;
public
:
...
...
@@ -146,9 +145,8 @@ private:
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
linguistic2
::
XSearchableDictionaryList
>
xDicList
;
// disallow access to copy-constructor and assignment-operator
EDITENG_DLLPRIVATE
SvxDicListChgClamp
(
const
SvxDicListChgClamp
&
);
EDITENG_DLLPRIVATE
SvxDicListChgClamp
&
operator
=
(
const
SvxDicListChgClamp
&
);
SvxDicListChgClamp
(
const
SvxDicListChgClamp
&
)
SAL_DELETED_FUNCTION
;
SvxDicListChgClamp
&
operator
=
(
const
SvxDicListChgClamp
&
)
SAL_DELETED_FUNCTION
;
public
:
SvxDicListChgClamp
(
::
com
::
sun
::
star
::
uno
::
Reference
<
...
...
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