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
c22ec49d
Kaydet (Commit)
c22ec49d
authored
Eki 27, 2015
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
inline SfxMediumRef typedef
Change-Id: Id6dc03a5957adf657d12db7941273593a9f7c10f
üst
14fc882e
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
19 additions
and
21 deletions
+19
-21
xmlfilter.cxx
dbaccess/source/filter/xml/xmlfilter.cxx
+1
-1
docfile.hxx
include/sfx2/docfile.hxx
+0
-2
xmlfilter.cxx
reportdesign/source/filter/xml/xmlfilter.cxx
+1
-1
fileobj.cxx
sfx2/source/appl/fileobj.cxx
+4
-4
fileobj.hxx
sfx2/source/appl/fileobj.hxx
+7
-7
SwXMLTextBlocks.hxx
sw/source/core/inc/SwXMLTextBlocks.hxx
+6
-6
No files found.
dbaccess/source/filter/xml/xmlfilter.cxx
Dosyayı görüntüle @
c22ec49d
...
...
@@ -295,7 +295,7 @@ bool ODBFilter::implImport( const Sequence< PropertyValue >& rDescriptor )
{
uno
::
Reference
<
XComponent
>
xCom
(
GetModel
(),
UNO_QUERY
);
SfxMediumRef
pMedium
(
0
);
tools
::
SvRef
<
SfxMedium
>
pMedium
(
0
);
if
(
!
xStorage
.
is
())
{
OUString
sStreamRelPath
;
...
...
include/sfx2/docfile.hxx
Dosyayı görüntüle @
c22ec49d
...
...
@@ -264,8 +264,6 @@ public:
static
sal_uInt32
CreatePasswordToModifyHash
(
const
OUString
&
aPasswd
,
bool
bWriter
);
};
typedef
tools
::
SvRef
<
SfxMedium
>
SfxMediumRef
;
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
reportdesign/source/filter/xml/xmlfilter.cxx
Dosyayı görüntüle @
c22ec49d
...
...
@@ -459,7 +459,7 @@ bool ORptFilter::implImport( const Sequence< PropertyValue >& rDescriptor )
{
uno
::
Reference
<
XComponent
>
xCom
(
GetModel
(),
UNO_QUERY
);
SfxMediumRef
pMedium
=
new
SfxMedium
(
tools
::
SvRef
<
SfxMedium
>
pMedium
=
new
SfxMedium
(
sFileName
,
(
StreamMode
::
READ
|
StreamMode
::
NOCREATE
)
);
if
(
pMedium
)
...
...
sfx2/source/appl/fileobj.cxx
Dosyayı görüntüle @
c22ec49d
...
...
@@ -96,7 +96,7 @@ bool SvFileObject::GetData( ::com::sun::star::uno::Any & rData,
case
FILETYPE_GRF
:
if
(
!
bLoadError
)
{
SfxMediumRef
xTmpMed
;
tools
::
SvRef
<
SfxMedium
>
xTmpMed
;
if
(
SotClipboardFormatId
::
GDIMETAFILE
==
nFmt
||
SotClipboardFormatId
::
BITMAP
==
nFmt
||
SotClipboardFormatId
::
SVXB
==
nFmt
)
...
...
@@ -266,7 +266,7 @@ bool SvFileObject::LoadFile_Impl()
bLoadAgain
=
bDataReady
=
bInNewData
=
false
;
bWaitForData
=
true
;
SfxMediumRef
xTmpMed
=
xMed
;
tools
::
SvRef
<
SfxMedium
>
xTmpMed
=
xMed
;
bInCallDownload
=
true
;
xMed
->
Download
(
LINK
(
this
,
SvFileObject
,
LoadGrfReady_Impl
)
);
bInCallDownload
=
false
;
...
...
@@ -485,7 +485,7 @@ IMPL_LINK_NOARG_TYPED( SvFileObject, LoadGrfReady_Impl, void*, void )
if
(
xMed
.
Is
()
)
{
xMed
->
SetDoneLink
(
Link
<
void
*
,
void
>
()
);
pDelMed
=
new
SfxMediumRef
(
xMed
);
pDelMed
=
new
tools
::
SvRef
<
SfxMedium
>
(
xMed
);
nPostUserEventId
=
Application
::
PostUserEvent
(
LINK
(
this
,
SvFileObject
,
DelMedium_Impl
),
pDelMed
);
...
...
@@ -496,7 +496,7 @@ IMPL_LINK_NOARG_TYPED( SvFileObject, LoadGrfReady_Impl, void*, void )
IMPL_LINK_TYPED
(
SvFileObject
,
DelMedium_Impl
,
void
*
,
p
,
void
)
{
SfxMediumRef
*
deleteMedium
=
static_cast
<
SfxMediumRef
*>
(
p
);
tools
::
SvRef
<
SfxMedium
>*
deleteMedium
=
static_cast
<
tools
::
SvRef
<
SfxMedium
>
*>
(
p
);
nPostUserEventId
=
0
;
assert
(
pDelMed
==
deleteMedium
);
pDelMed
=
NULL
;
...
...
sfx2/source/appl/fileobj.hxx
Dosyayı görüntüle @
c22ec49d
...
...
@@ -28,14 +28,14 @@ namespace sfx2 { class FileDialogHelper; }
class
SvFileObject
:
public
sfx2
::
SvLinkSource
{
OUString
sFileNm
;
OUString
sFilter
;
OUString
sReferer
;
OUString
sFileNm
;
OUString
sFilter
;
OUString
sReferer
;
Link
<
const
OUString
&
,
void
>
aEndEditLink
;
SfxMediumRef
xMed
;
ImplSVEvent
*
nPostUserEventId
;
SfxMediumRef
*
pDelMed
;
VclPtr
<
vcl
::
Window
>
pOldParent
;
tools
::
SvRef
<
SfxMedium
>
xMed
;
ImplSVEvent
*
nPostUserEventId
;
tools
::
SvRef
<
SfxMedium
>*
pDelMed
;
VclPtr
<
vcl
::
Window
>
pOldParent
;
sal_uInt8
nType
;
...
...
sw/source/core/inc/SwXMLTextBlocks.hxx
Dosyayı görüntüle @
c22ec49d
...
...
@@ -34,12 +34,12 @@ class SvxMacroTableDtor;
class
SwXMLTextBlocks
:
public
SwImpBlocks
{
protected
:
bool
bAutocorrBlock
;
bool
bBlock
;
SfxObjectShellRef
xDocShellRef
;
sal_uInt16
nFlags
;
OUString
aPackageName
;
SfxMediumRef
xMedium
;
bool
bAutocorrBlock
;
bool
bBlock
;
SfxObjectShellRef
xDocShellRef
;
sal_uInt16
nFlags
;
OUString
aPackageName
;
tools
::
SvRef
<
SfxMedium
>
xMedium
;
void
ReadInfo
();
void
WriteInfo
();
...
...
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