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
e35f2f06
Kaydet (Commit)
e35f2f06
authored
Nis 25, 2013
tarafından
Thomas Arnhold
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
don't pollute global namespace
Change-Id: Iffeeffb015c59ea787838c737c6a11f6fbef2794
üst
6f906d9c
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
12 deletions
+9
-12
xpropertyset.hxx
include/test/beans/xpropertyset.hxx
+3
-5
roadmapcontrol.hxx
include/toolkit/controls/roadmapcontrol.hxx
+0
-0
tabpagecontainer.hxx
include/toolkit/controls/tabpagecontainer.hxx
+0
-5
xpropertyset.cxx
test/source/beans/xpropertyset.cxx
+2
-1
unocontrols.cxx
toolkit/source/controls/unocontrols.cxx
+4
-1
No files found.
include/test/beans/xpropertyset.hxx
Dosyayı görüntüle @
e35f2f06
...
@@ -21,8 +21,6 @@
...
@@ -21,8 +21,6 @@
#include <vector>
#include <vector>
using
namespace
com
::
sun
::
star
;
namespace
apitest
{
namespace
apitest
{
class
OOO_DLLPUBLIC_TEST
XPropertySet
class
OOO_DLLPUBLIC_TEST
XPropertySet
...
@@ -30,7 +28,7 @@ class OOO_DLLPUBLIC_TEST XPropertySet
...
@@ -30,7 +28,7 @@ class OOO_DLLPUBLIC_TEST XPropertySet
public
:
public
:
virtual
~
XPropertySet
();
virtual
~
XPropertySet
();
virtual
uno
::
Reference
<
uno
::
XInterface
>
init
()
=
0
;
virtual
css
::
uno
::
Reference
<
css
::
uno
::
XInterface
>
init
()
=
0
;
void
testGetPropertySetInfo
();
void
testGetPropertySetInfo
();
void
testAddPropertyChangeListener
();
void
testAddPropertyChangeListener
();
...
@@ -44,9 +42,9 @@ protected:
...
@@ -44,9 +42,9 @@ protected:
virtual
bool
isPropertyValueChangeable
(
const
OUString
&
rName
);
virtual
bool
isPropertyValueChangeable
(
const
OUString
&
rName
);
private
:
private
:
void
fillPropsToTest
(
const
uno
::
Reference
<
beans
::
XPropertySetInfo
>&
xPropInfo
);
void
fillPropsToTest
(
const
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySetInfo
>&
xPropInfo
);
static
bool
getSinglePropertyValue
(
static
bool
getSinglePropertyValue
(
const
uno
::
Reference
<
beans
::
XPropertySet
>&
xPropSet
,
const
OUString
&
rName
);
const
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySet
>&
xPropSet
,
const
OUString
&
rName
);
struct
OOO_DLLPUBLIC_TEST
PropsToTest
struct
OOO_DLLPUBLIC_TEST
PropsToTest
{
{
...
...
include/toolkit/controls/roadmapcontrol.hxx
Dosyayı görüntüle @
e35f2f06
This diff is collapsed.
Click to expand it.
include/toolkit/controls/tabpagecontainer.hxx
Dosyayı görüntüle @
e35f2f06
...
@@ -33,11 +33,6 @@
...
@@ -33,11 +33,6 @@
#include <toolkit/controls/controlmodelcontainerbase.hxx>
#include <toolkit/controls/controlmodelcontainerbase.hxx>
#include <toolkit/helper/listenermultiplexer.hxx>
#include <toolkit/helper/listenermultiplexer.hxx>
using
namespace
::
com
::
sun
::
star
::
uno
;
using
namespace
::
com
::
sun
::
star
::
lang
;
using
namespace
::
com
::
sun
::
star
::
beans
;
using
namespace
::
com
::
sun
::
star
::
container
;
// ------------------------------------------------------------------
// ------------------------------------------------------------------
// class ::com::sun::star::awt::tab::UnoControlTabPageContainerModel
// class ::com::sun::star::awt::tab::UnoControlTabPageContainerModel
// ------------------------------------------------------------------
// ------------------------------------------------------------------
...
...
test/source/beans/xpropertyset.cxx
Dosyayı görüntüle @
e35f2f06
...
@@ -19,7 +19,8 @@
...
@@ -19,7 +19,8 @@
#include <set>
#include <set>
using
namespace
com
::
sun
::
star
::
uno
;
using
namespace
css
;
using
namespace
css
::
uno
;
namespace
apitest
{
namespace
apitest
{
...
...
toolkit/source/controls/unocontrols.cxx
Dosyayı görüntüle @
e35f2f06
...
@@ -62,7 +62,10 @@
...
@@ -62,7 +62,10 @@
#include <algorithm>
#include <algorithm>
#include <functional>
#include <functional>
using
namespace
::
com
::
sun
::
star
;
using
namespace
css
;
using
namespace
css
::
awt
;
using
namespace
css
::
lang
;
using
namespace
css
::
uno
;
using
::
com
::
sun
::
star
::
graphic
::
XGraphic
;
using
::
com
::
sun
::
star
::
graphic
::
XGraphic
;
using
::
com
::
sun
::
star
::
uno
::
Reference
;
using
::
com
::
sun
::
star
::
uno
::
Reference
;
using
namespace
::
toolkit
;
using
namespace
::
toolkit
;
...
...
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