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
40c1e728
Kaydet (Commit)
40c1e728
authored
Kas 10, 2012
tarafından
David Tardon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
WaE: unused parameter
Change-Id: Ib9956bd2671434fc15905e7c4fd56bd8f7162b60
üst
fabf0ef1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
27 deletions
+27
-27
SyncDbusSessionHelper.cxx
shell/source/sessioninstall/SyncDbusSessionHelper.cxx
+4
-4
SyncDbusSessionHelper.hxx
shell/source/sessioninstall/SyncDbusSessionHelper.hxx
+23
-23
No files found.
shell/source/sessioninstall/SyncDbusSessionHelper.cxx
Dosyayı görüntüle @
40c1e728
...
...
@@ -17,8 +17,8 @@
using
namespace
::
com
::
sun
::
star
::
lang
;
using
namespace
::
com
::
sun
::
star
::
uno
;
using
namespace
::
comphelper
;
using
namespace
::
std
;
;
using
namespace
::
rtl
;
;
using
namespace
::
std
;
using
namespace
::
rtl
;
namespace
{
...
...
@@ -29,7 +29,7 @@ namespace
{
GError
*
m_pError
;
public
:
GErrorWrapper
(
GError
*
pError
)
:
m_pError
(
pError
)
{}
;
GErrorWrapper
(
GError
*
pError
)
:
m_pError
(
pError
)
{}
~
GErrorWrapper
()
{
if
(
!
m_pError
)
...
...
@@ -55,7 +55,7 @@ namespace
if
(
!
proxy
)
throw
RuntimeException
(
OUString
(
"couldnt get a proxy!"
),
NULL
);
return
proxy
;
}
;
}
}
namespace
shell
{
namespace
sessioninstall
...
...
shell/source/sessioninstall/SyncDbusSessionHelper.hxx
Dosyayı görüntüle @
40c1e728
...
...
@@ -21,33 +21,33 @@ namespace shell { namespace sessioninstall
{
public
:
SyncDbusSessionHelper
(
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
uno
::
XComponentContext
>
const
&
);
virtual
~
SyncDbusSessionHelper
()
{}
;
virtual
~
SyncDbusSessionHelper
()
{}
// XModify Methods
virtual
void
SAL_CALL
InstallPackageNames
(
::
sal_uInt32
xid
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
rtl
::
OUString
>&
packages
,
const
::
rtl
::
OUString
&
interaction
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
InstallPackageNames
(
::
sal_uInt32
/* xid */
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
rtl
::
OUString
>&
/* packages */
,
const
::
rtl
::
OUString
&
/* interaction */
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
InstallPackageFiles
(
::
sal_uInt32
xid
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
rtl
::
OUString
>&
files
,
const
::
rtl
::
OUString
&
interaction
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
{
throw
::
com
::
sun
::
star
::
uno
::
RuntimeException
();
}
;
// not implemented
virtual
void
SAL_CALL
InstallProvideFiles
(
::
sal_uInt32
xid
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
rtl
::
OUString
>&
files
,
const
::
rtl
::
OUString
&
interaction
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
{
throw
::
com
::
sun
::
star
::
uno
::
RuntimeException
();
}
;
// not implemented
virtual
void
SAL_CALL
InstallCatalogs
(
::
sal_uInt32
xid
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
rtl
::
OUString
>&
files
,
const
::
rtl
::
OUString
&
interaction
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
{
throw
::
com
::
sun
::
star
::
uno
::
RuntimeException
();
}
;
// not implemented
virtual
void
SAL_CALL
InstallMimeTypes
(
::
sal_uInt32
xid
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
rtl
::
OUString
>&
mime_types
,
const
::
rtl
::
OUString
&
interaction
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
{
throw
::
com
::
sun
::
star
::
uno
::
RuntimeException
();
}
;
// not implemented
virtual
void
SAL_CALL
InstallFontconfigRessources
(
::
sal_uInt32
xid
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
rtl
::
OUString
>&
resources
,
const
::
rtl
::
OUString
&
interaction
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
{
throw
::
com
::
sun
::
star
::
uno
::
RuntimeException
();
}
;
// not implemented
virtual
void
SAL_CALL
InstalliGStreamerRessources
(
::
sal_uInt32
xid
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
rtl
::
OUString
>&
resources
,
const
::
rtl
::
OUString
&
interaction
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
{
throw
::
com
::
sun
::
star
::
uno
::
RuntimeException
();
}
;
// not implemented
virtual
void
SAL_CALL
InstallRessources
(
::
sal_uInt32
xid
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
rtl
::
OUString
>&
types
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
rtl
::
OUString
>&
resources
,
const
::
rtl
::
OUString
&
interaction
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
{
throw
::
com
::
sun
::
star
::
uno
::
RuntimeException
();
}
;
// not implemented
virtual
void
SAL_CALL
RemovePackageByFiles
(
::
sal_uInt32
xid
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
rtl
::
OUString
>&
files
,
const
::
rtl
::
OUString
&
interaction
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
{
throw
::
com
::
sun
::
star
::
uno
::
RuntimeException
();
}
;
// not implemented
virtual
void
SAL_CALL
InstallPrinterDrivers
(
::
sal_uInt32
xid
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
rtl
::
OUString
>&
files
,
const
::
rtl
::
OUString
&
interaction
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
{
throw
::
com
::
sun
::
star
::
uno
::
RuntimeException
();
}
;
// not implemented
virtual
void
SAL_CALL
InstallPackageFiles
(
::
sal_uInt32
/* xid */
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
rtl
::
OUString
>&
/* files */
,
const
::
rtl
::
OUString
&
/* interaction */
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
{
throw
::
com
::
sun
::
star
::
uno
::
RuntimeException
();
}
// not implemented
virtual
void
SAL_CALL
InstallProvideFiles
(
::
sal_uInt32
/* xid */
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
rtl
::
OUString
>&
/* files */
,
const
::
rtl
::
OUString
&
/* interaction */
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
{
throw
::
com
::
sun
::
star
::
uno
::
RuntimeException
();
}
// not implemented
virtual
void
SAL_CALL
InstallCatalogs
(
::
sal_uInt32
/* xid */
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
rtl
::
OUString
>&
/* files */
,
const
::
rtl
::
OUString
&
/* interaction */
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
{
throw
::
com
::
sun
::
star
::
uno
::
RuntimeException
();
}
// not implemented
virtual
void
SAL_CALL
InstallMimeTypes
(
::
sal_uInt32
/* xid */
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
rtl
::
OUString
>&
/* mime_types */
,
const
::
rtl
::
OUString
&
/* interaction */
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
{
throw
::
com
::
sun
::
star
::
uno
::
RuntimeException
();
}
// not implemented
virtual
void
SAL_CALL
InstallFontconfigRessources
(
::
sal_uInt32
/* xid */
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
rtl
::
OUString
>&
/* resources */
,
const
::
rtl
::
OUString
&
/* interaction */
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
{
throw
::
com
::
sun
::
star
::
uno
::
RuntimeException
();
}
// not implemented
virtual
void
SAL_CALL
InstalliGStreamerRessources
(
::
sal_uInt32
/* xid */
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
rtl
::
OUString
>&
/* resources */
,
const
::
rtl
::
OUString
&
/* interaction */
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
{
throw
::
com
::
sun
::
star
::
uno
::
RuntimeException
();
}
// not implemented
virtual
void
SAL_CALL
InstallRessources
(
::
sal_uInt32
/* xid */
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
rtl
::
OUString
>&
/* types */
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
rtl
::
OUString
>&
/* resources */
,
const
::
rtl
::
OUString
&
/* interaction */
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
{
throw
::
com
::
sun
::
star
::
uno
::
RuntimeException
();
}
// not implemented
virtual
void
SAL_CALL
RemovePackageByFiles
(
SAL_UNUSED_PARAMETER
::
sal_uInt32
/* xid */
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
rtl
::
OUString
>&
/* files */
,
const
::
rtl
::
OUString
&
/* interaction */
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
{
throw
::
com
::
sun
::
star
::
uno
::
RuntimeException
();
}
// not implemented
virtual
void
SAL_CALL
InstallPrinterDrivers
(
::
sal_uInt32
/* xid */
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
rtl
::
OUString
>&
/* files */
,
const
::
rtl
::
OUString
&
/* interaction */
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
{
throw
::
com
::
sun
::
star
::
uno
::
RuntimeException
();
}
// not implemented
// XQuery Methods
virtual
void
SAL_CALL
IsInstalled
(
const
::
rtl
::
OUString
&
package_name
,
const
::
rtl
::
OUString
&
interaction
,
::
sal_Bool
&
installed
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
IsInstalled
(
const
::
rtl
::
OUString
&
/* package_name */
,
const
::
rtl
::
OUString
&
/* interaction */
,
::
sal_Bool
&
/* installed */
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
SearchFile
(
const
::
rtl
::
OUString
&
file_name
,
const
::
rtl
::
OUString
&
interaction
,
::
sal_Bool
&
installed
,
::
rtl
::
OUString
&
package_name
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
{
throw
::
com
::
sun
::
star
::
uno
::
RuntimeException
();
}
;
// not implemented
virtual
void
SAL_CALL
SearchFile
(
const
::
rtl
::
OUString
&
/* file_name */
,
const
::
rtl
::
OUString
&
/* interaction */
,
::
sal_Bool
&
/* installed */
,
::
rtl
::
OUString
&
/* package_name */
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
{
throw
::
com
::
sun
::
star
::
uno
::
RuntimeException
();
}
// not implemented
private
:
SyncDbusSessionHelper
();
// never implemented
...
...
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