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
5708d3dc
Kaydet (Commit)
5708d3dc
authored
Ock 20, 2012
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
More on String to rtl::OUString changes.
üst
88869c1d
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
18 deletions
+10
-18
documen8.cxx
sc/source/core/data/documen8.cxx
+1
-1
arealink.cxx
sc/source/ui/docshell/arealink.cxx
+5
-10
externalrefmgr.cxx
sc/source/ui/docshell/externalrefmgr.cxx
+1
-1
tablink.cxx
sc/source/ui/docshell/tablink.cxx
+2
-5
ww8graf.cxx
sw/source/filter/ww8/ww8graf.cxx
+1
-1
No files found.
sc/source/core/data/documen8.cxx
Dosyayı görüntüle @
5708d3dc
...
@@ -1031,7 +1031,7 @@ void ScDocument::UpdateExternalRefLinks(Window* pWin)
...
@@ -1031,7 +1031,7 @@ void ScDocument::UpdateExternalRefLinks(Window* pWin)
{
{
// Update failed. Notify the user.
// Update failed. Notify the user.
String
aFile
;
rtl
::
OU
String
aFile
;
pLinkManager
->
GetDisplayNames
(
pRefLink
,
NULL
,
&
aFile
,
NULL
,
NULL
);
pLinkManager
->
GetDisplayNames
(
pRefLink
,
NULL
,
&
aFile
,
NULL
,
NULL
);
// Decode encoded URL for display friendliness.
// Decode encoded URL for display friendliness.
INetURLObject
aUrl
(
aFile
,
INetURLObject
::
WAS_ENCODED
);
INetURLObject
aUrl
(
aFile
,
INetURLObject
::
WAS_ENCODED
);
...
...
sc/source/ui/docshell/arealink.cxx
Dosyayı görüntüle @
5708d3dc
...
@@ -129,13 +129,8 @@ void ScAreaLink::Edit(Window* pParent, const Link& /* rEndEditHdl */ )
...
@@ -129,13 +129,8 @@ void ScAreaLink::Edit(Window* pParent, const Link& /* rEndEditHdl */ )
sfx2
::
LinkManager
*
pLinkManager
=
pImpl
->
m_pDocSh
->
GetDocument
()
->
GetLinkManager
();
sfx2
::
LinkManager
*
pLinkManager
=
pImpl
->
m_pDocSh
->
GetDocument
()
->
GetLinkManager
();
if
(
pLinkManager
!=
NULL
)
if
(
pLinkManager
!=
NULL
)
{
{
String
aTmp1
;
rtl
::
OUString
aFile
,
aArea
,
aFilter
;
String
aTmp2
;
pLinkManager
->
GetDisplayNames
(
this
,
NULL
,
&
aFile
,
&
aArea
,
&
aFilter
);
String
aTmp3
;
pLinkManager
->
GetDisplayNames
(
this
,
NULL
,
&
aTmp1
,
&
aTmp2
,
&
aTmp3
);
rtl
::
OUString
aFile
=
aTmp1
;
rtl
::
OUString
aArea
=
aTmp2
;
rtl
::
OUString
aFilter
=
aTmp3
;
// the file dialog returns the filter name with the application prefix
// the file dialog returns the filter name with the application prefix
// -> remove prefix
// -> remove prefix
...
@@ -148,9 +143,9 @@ void ScAreaLink::Edit(Window* pParent, const Link& /* rEndEditHdl */ )
...
@@ -148,9 +143,9 @@ void ScAreaLink::Edit(Window* pParent, const Link& /* rEndEditHdl */ )
// adjust in dialog:
// adjust in dialog:
String
aNewLinkName
;
String
aNewLinkName
;
aTmp1
=
aFilter
;
String
aTmp
=
aFilter
;
sfx2
::
MakeLnkName
(
aNewLinkName
,
NULL
,
aFile
,
aArea
,
&
aTmp
1
);
sfx2
::
MakeLnkName
(
aNewLinkName
,
NULL
,
aFile
,
aArea
,
&
aTmp
);
aFilter
=
aTmp
1
;
aFilter
=
aTmp
;
SetName
(
aNewLinkName
);
SetName
(
aNewLinkName
);
}
}
...
...
sc/source/ui/docshell/externalrefmgr.cxx
Dosyayı görüntüle @
5708d3dc
...
@@ -1250,7 +1250,7 @@ void ScExternalRefLink::Closed()
...
@@ -1250,7 +1250,7 @@ void ScExternalRefLink::Closed()
if
(
!
mbDoRefresh
)
if
(
!
mbDoRefresh
)
return
SUCCESS
;
return
SUCCESS
;
String
aFile
,
aFilter
;
rtl
::
OU
String
aFile
,
aFilter
;
mpDoc
->
GetLinkManager
()
->
GetDisplayNames
(
this
,
NULL
,
&
aFile
,
NULL
,
&
aFilter
);
mpDoc
->
GetLinkManager
()
->
GetDisplayNames
(
this
,
NULL
,
&
aFile
,
NULL
,
&
aFilter
);
ScExternalRefManager
*
pMgr
=
mpDoc
->
GetExternalRefManager
();
ScExternalRefManager
*
pMgr
=
mpDoc
->
GetExternalRefManager
();
...
...
sc/source/ui/docshell/tablink.cxx
Dosyayı görüntüle @
5708d3dc
...
@@ -147,11 +147,8 @@ void ScTableLink::Edit( Window* pParent, const Link& rEndEditHdl )
...
@@ -147,11 +147,8 @@ void ScTableLink::Edit( Window* pParent, const Link& rEndEditHdl )
sfx2
::
LinkManager
*
pLinkManager
=
pImpl
->
m_pDocSh
->
GetDocument
()
->
GetLinkManager
();
sfx2
::
LinkManager
*
pLinkManager
=
pImpl
->
m_pDocSh
->
GetDocument
()
->
GetLinkManager
();
if
(
pLinkManager
!=
NULL
)
if
(
pLinkManager
!=
NULL
)
{
{
String
aTmp1
;
rtl
::
OUString
aFile
,
aFilter
;
String
aTmp2
;
pLinkManager
->
GetDisplayNames
(
this
,
0
,
&
aFile
,
NULL
,
&
aFilter
);
pLinkManager
->
GetDisplayNames
(
this
,
0
,
&
aTmp1
,
NULL
,
&
aTmp2
);
rtl
::
OUString
aFile
=
aTmp1
;
rtl
::
OUString
aFilter
=
aTmp2
;
// the file dialog returns the filter name with the application prefix
// the file dialog returns the filter name with the application prefix
// -> remove prefix
// -> remove prefix
...
...
sw/source/filter/ww8/ww8graf.cxx
Dosyayı görüntüle @
5708d3dc
...
@@ -2978,7 +2978,7 @@ SwFlyFrmFmt* SwWW8ImplReader::ImportReplaceableDrawables( SdrObject* &rpObject,
...
@@ -2978,7 +2978,7 @@ SwFlyFrmFmt* SwWW8ImplReader::ImportReplaceableDrawables( SdrObject* &rpObject,
{
{
const
SdrGrafObj
*
pGrf
=
(
const
SdrGrafObj
*
)
rpObject
;
const
SdrGrafObj
*
pGrf
=
(
const
SdrGrafObj
*
)
rpObject
;
bool
bDone
=
false
;
bool
bDone
=
false
;
if
(
pGrf
->
IsLinkedGraphic
()
&&
pGrf
->
GetFileName
().
Len
())
if
(
pGrf
->
IsLinkedGraphic
()
&&
!
pGrf
->
GetFileName
().
isEmpty
())
{
{
GraphicType
eType
=
pGrf
->
GetGraphicType
();
GraphicType
eType
=
pGrf
->
GetGraphicType
();
String
aGrfName
(
String
aGrfName
(
...
...
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