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
e1e4efdc
Kaydet (Commit)
e1e4efdc
authored
Şub 06, 2017
tarafından
Tor Lillqvist
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Typo: s/dependend/dependent/i
Change-Id: If02798894ad6f0e0442ed60aaec6eca40e6dcb61
üst
5c54971c
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
20 additions
and
24 deletions
+20
-24
outliner.cxx
editeng/source/outliner/outliner.cxx
+5
-5
outlvw.cxx
editeng/source/outliner/outlvw.cxx
+3
-3
unoforou.cxx
editeng/source/uno/unoforou.cxx
+1
-1
helponstartup.cxx
framework/source/jobs/helponstartup.cxx
+3
-3
outliner.hxx
include/editeng/outliner.hxx
+2
-2
vclxsystemdependentwindow.hxx
include/toolkit/awt/vclxsystemdependentwindow.hxx
+1
-5
DocumentView.java
...opersGuide/OfficeDev/DesktopEnvironment/DocumentView.java
+1
-1
AccessibleCell.cxx
sc/source/ui/Accessibility/AccessibleCell.cxx
+2
-2
AccessibleCell.hxx
sc/source/ui/inc/AccessibleCell.hxx
+1
-1
sdview.cxx
sd/source/ui/view/sdview.cxx
+1
-1
No files found.
editeng/source/outliner/outliner.cxx
Dosyayı görüntüle @
e1e4efdc
...
...
@@ -256,7 +256,7 @@ void Outliner::SetDepth( Paragraph* pPara, sal_Int16 nNewDepth )
ImplCalcBulletText
(
nPara
,
false
,
false
);
if
(
ImplGetOutlinerMode
()
==
OutlinerMode
::
OutlineObject
)
ImplSetLevelDependen
d
StyleSheet
(
nPara
);
ImplSetLevelDependen
t
StyleSheet
(
nPara
);
DepthChangedHdl
(
pPara
,
nPrevFlags
);
}
...
...
@@ -685,10 +685,10 @@ void Outliner::ImplCheckNumBulletItem( sal_Int32 nPara )
pPara
->
aBulSize
.
Width
()
=
-
1
;
}
void
Outliner
::
ImplSetLevelDependen
d
StyleSheet
(
sal_Int32
nPara
)
void
Outliner
::
ImplSetLevelDependen
t
StyleSheet
(
sal_Int32
nPara
)
{
DBG_ASSERT
(
(
ImplGetOutlinerMode
()
==
OutlinerMode
::
OutlineObject
)
||
(
ImplGetOutlinerMode
()
==
OutlinerMode
::
OutlineView
),
"SetLevelDependen
d
StyleSheet: Wrong Mode!"
);
DBG_ASSERT
(
(
ImplGetOutlinerMode
()
==
OutlinerMode
::
OutlineObject
)
||
(
ImplGetOutlinerMode
()
==
OutlinerMode
::
OutlineView
),
"SetLevelDependen
t
StyleSheet: Wrong Mode!"
);
SfxStyleSheet
*
pStyle
=
GetStyleSheet
(
nPara
);
...
...
@@ -1932,10 +1932,10 @@ OUString Outliner::ImplGetBulletText( sal_Int32 nPara )
}
// this is needed for StarOffice Api
void
Outliner
::
SetLevelDependen
d
StyleSheet
(
sal_Int32
nPara
)
void
Outliner
::
SetLevelDependen
t
StyleSheet
(
sal_Int32
nPara
)
{
SfxItemSet
aOldAttrs
(
pEditEngine
->
GetParaAttribs
(
nPara
)
);
ImplSetLevelDependen
d
StyleSheet
(
nPara
);
ImplSetLevelDependen
t
StyleSheet
(
nPara
);
pEditEngine
->
SetParaAttribs
(
nPara
,
aOldAttrs
);
}
...
...
editeng/source/outliner/outlvw.cxx
Dosyayı görüntüle @
e1e4efdc
...
...
@@ -536,7 +536,7 @@ void OutlinerView::Indent( short nDiff )
pOwner
->
ImplCalcBulletText
(
nPara
,
false
,
false
);
if
(
pOwner
->
ImplGetOutlinerMode
()
==
OutlinerMode
::
OutlineObject
)
pOwner
->
ImplSetLevelDependen
d
StyleSheet
(
nPara
);
pOwner
->
ImplSetLevelDependen
t
StyleSheet
(
nPara
);
// Notify App
pOwner
->
DepthChangedHdl
(
pPara
,
nPrevFlags
);
...
...
@@ -691,7 +691,7 @@ void OutlinerView::PasteSpecial()
const
sal_Int32
nParaCount
=
pOwner
->
pEditEngine
->
GetParagraphCount
();
for
(
sal_Int32
nPara
=
0
;
nPara
<
nParaCount
;
nPara
++
)
pOwner
->
ImplSetLevelDependen
d
StyleSheet
(
nPara
);
pOwner
->
ImplSetLevelDependen
t
StyleSheet
(
nPara
);
}
pEditView
->
SetEditEngineUpdateMode
(
true
);
...
...
@@ -1400,7 +1400,7 @@ sal_uLong OutlinerView::Read( SvStream& rInput, const OUString& rBaseURL, EEText
}
if
(
pOwner
->
ImplGetOutlinerMode
()
==
OutlinerMode
::
OutlineObject
)
pOwner
->
ImplSetLevelDependen
d
StyleSheet
(
n
);
pOwner
->
ImplSetLevelDependen
t
StyleSheet
(
n
);
}
if
(
eFormat
!=
EE_FORMAT_BIN
)
...
...
editeng/source/uno/unoforou.cxx
Dosyayı görüntüle @
e1e4efdc
...
...
@@ -478,7 +478,7 @@ bool SvxOutlinerForwarder::SetDepth( sal_Int32 nPara, sal_Int16 nNewDepth )
// const bool bOutlinerText = pSdrObject && (pSdrObject->GetObjInventor() == SdrInventor::Default) && (pSdrObject->GetObjIdentifier() == OBJ_OUTLINETEXT);
if
(
bOutlinerText
)
rOutliner
.
SetLevelDependen
d
StyleSheet
(
nPara
);
rOutliner
.
SetLevelDependen
t
StyleSheet
(
nPara
);
return
true
;
}
...
...
framework/source/jobs/helponstartup.cxx
Dosyayı görüntüle @
e1e4efdc
...
...
@@ -132,14 +132,14 @@ css::uno::Any SAL_CALL HelpOnStartup::execute(const css::uno::Sequence< css::bea
if
(
bShowIt
)
{
// retrieve the help URL for the detected application module
OUString
sModuleDependen
d
HelpURL
=
its_checkIfHelpEnabledAndGetURL
(
sModule
);
if
(
!
sModuleDependen
d
HelpURL
.
isEmpty
())
OUString
sModuleDependen
t
HelpURL
=
its_checkIfHelpEnabledAndGetURL
(
sModule
);
if
(
!
sModuleDependen
t
HelpURL
.
isEmpty
())
{
// Show this help page.
// Note: The help window brings itself to front ...
Help
*
pHelp
=
Application
::
GetHelp
();
if
(
pHelp
)
pHelp
->
Start
(
sModuleDependen
d
HelpURL
,
nullptr
);
pHelp
->
Start
(
sModuleDependen
t
HelpURL
,
nullptr
);
}
}
...
...
include/editeng/outliner.hxx
Dosyayı görüntüle @
e1e4efdc
...
...
@@ -641,7 +641,7 @@ private:
OUString
ImplGetBulletText
(
sal_Int32
nPara
);
void
ImplCheckNumBulletItem
(
sal_Int32
nPara
);
void
ImplInitDepth
(
sal_Int32
nPara
,
sal_Int16
nDepth
,
bool
bCreateUndo
);
void
ImplSetLevelDependen
d
StyleSheet
(
sal_Int32
nPara
);
void
ImplSetLevelDependen
t
StyleSheet
(
sal_Int32
nPara
);
void
ImplBlockInsertionCallbacks
(
bool
b
);
...
...
@@ -954,7 +954,7 @@ public:
const
EditEngine
&
GetEditEngine
()
const
;
// this is needed for StarOffice Api
void
SetLevelDependen
d
StyleSheet
(
sal_Int32
nPara
);
void
SetLevelDependen
t
StyleSheet
(
sal_Int32
nPara
);
OutlinerMode
GetOutlinerMode
()
const
{
return
nOutlinerMode
;
}
...
...
include/toolkit/awt/vclxsystemdependentwindow.hxx
Dosyayı görüntüle @
e1e4efdc
...
...
@@ -28,10 +28,6 @@
#include <toolkit/awt/vclxwindow.hxx>
// class VCLXSystemDependendtWindow
class
TOOLKIT_DLLPUBLIC
VCLXSystemDependentWindow
:
public
css
::
awt
::
XSystemDependentWindowPeer
,
public
VCLXWindow
{
...
...
@@ -48,7 +44,7 @@ public:
css
::
uno
::
Sequence
<
css
::
uno
::
Type
>
SAL_CALL
getTypes
()
override
;
css
::
uno
::
Sequence
<
sal_Int8
>
SAL_CALL
getImplementationId
()
override
;
// css::awt::XSystemDependen
d
tWindowPeer
// css::awt::XSystemDependentWindowPeer
css
::
uno
::
Any
SAL_CALL
getWindowHandle
(
const
css
::
uno
::
Sequence
<
sal_Int8
>&
ProcessId
,
sal_Int16
SystemType
)
override
;
};
...
...
odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java
Dosyayı görüntüle @
e1e4efdc
...
...
@@ -198,7 +198,7 @@ public class DocumentView extends JFrame
/**
* Create the view frame for showing the office documents on demand.
* Depend
end from
given command line parameter we create
* Depend
ing on
given command line parameter we create
* an office XFrame and initialize it with a window. This
* window can be a pure toolkit window (means toolkit of office!)
* or a plugged java canvas - office window combination.
...
...
sc/source/ui/Accessibility/AccessibleCell.cxx
Dosyayı görüntüle @
e1e4efdc
...
...
@@ -286,7 +286,7 @@ uno::Reference<XAccessibleRelationSet> SAL_CALL
pRelationSet
=
mpAccDoc
->
GetRelationSet
(
&
maCellAddress
);
if
(
!
pRelationSet
)
pRelationSet
=
new
utl
::
AccessibleRelationSetHelper
();
FillDependen
d
s
(
pRelationSet
);
FillDependen
t
s
(
pRelationSet
);
FillPrecedents
(
pRelationSet
);
return
pRelationSet
;
}
...
...
@@ -392,7 +392,7 @@ ScDocument* ScAccessibleCell::GetDocument(ScTabViewShell* pViewShell)
return
pEditSource
;
}
void
ScAccessibleCell
::
FillDependen
d
s
(
utl
::
AccessibleRelationSetHelper
*
pRelationSet
)
void
ScAccessibleCell
::
FillDependen
t
s
(
utl
::
AccessibleRelationSetHelper
*
pRelationSet
)
{
if
(
mpDoc
)
{
...
...
sc/source/ui/inc/AccessibleCell.hxx
Dosyayı görüntüle @
e1e4efdc
...
...
@@ -152,7 +152,7 @@ private:
::
std
::
unique_ptr
<
SvxEditSource
>
CreateEditSource
(
ScTabViewShell
*
pViewShell
,
ScAddress
aCell
,
ScSplitPos
eSplitPos
);
void
FillDependen
d
s
(
utl
::
AccessibleRelationSetHelper
*
pRelationSet
);
void
FillDependen
t
s
(
utl
::
AccessibleRelationSetHelper
*
pRelationSet
);
void
FillPrecedents
(
utl
::
AccessibleRelationSetHelper
*
pRelationSet
);
void
AddRelation
(
const
ScAddress
&
rCell
,
const
sal_uInt16
aRelationType
,
...
...
sd/source/ui/view/sdview.cxx
Dosyayı görüntüle @
e1e4efdc
...
...
@@ -1208,7 +1208,7 @@ void View::OnEndPasteOrDrop( PasteOrDropInfos* pInfo )
SdPage
*
pPage
=
static_cast
<
SdPage
*
>
(
pTextObj
->
GetPage
()
);
const
PresObjKind
eKind
=
pPage
->
GetPresObjKind
(
pTextObj
);
// outline kinds are taken care of in Outliner::ImplSetLevelDependen
d
StyleSheet
// outline kinds are taken care of in Outliner::ImplSetLevelDependen
t
StyleSheet
if
(
eKind
==
PRESOBJ_OUTLINE
)
return
;
...
...
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