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
cfddda09
Kaydet (Commit)
cfddda09
authored
Nis 14, 2014
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sal_Bool to bool in SvtRulerAccessible
Change-Id: Ib5f451fadb9eedc49d6bded0cbd92cfbbde71bae
üst
8fbbd1bd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
24 deletions
+24
-24
accessibleruler.hxx
include/svtools/accessibleruler.hxx
+19
-19
accessibleruler.cxx
svtools/source/control/accessibleruler.cxx
+5
-5
No files found.
include/svtools/accessibleruler.hxx
Dosyayı görüntüle @
cfddda09
...
@@ -67,6 +67,25 @@ public:
...
@@ -67,6 +67,25 @@ public:
protected
:
protected
:
virtual
~
SvtRulerAccessible
();
virtual
~
SvtRulerAccessible
();
public
:
public
:
virtual
bool
SAL_CALL
isShowing
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
bool
SAL_CALL
isVisible
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
bool
SAL_CALL
isFocusTraversable
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
addFocusListener
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
awt
::
XFocusListener
>&
xListener
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
removeFocusListener
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
awt
::
XFocusListener
>&
xListener
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
//===== XAccessible =====================================================
//===== XAccessible =====================================================
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessibleContext
>
SAL_CALL
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessibleContext
>
SAL_CALL
...
@@ -92,25 +111,6 @@ public:
...
@@ -92,25 +111,6 @@ public:
virtual
::
com
::
sun
::
star
::
awt
::
Size
SAL_CALL
virtual
::
com
::
sun
::
star
::
awt
::
Size
SAL_CALL
getSize
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
getSize
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
isShowing
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
isVisible
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
isFocusTraversable
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
addFocusListener
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
awt
::
XFocusListener
>&
xListener
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
removeFocusListener
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
awt
::
XFocusListener
>&
xListener
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
virtual
void
SAL_CALL
grabFocus
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
grabFocus
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
...
...
svtools/source/control/accessibleruler.cxx
Dosyayı görüntüle @
cfddda09
...
@@ -119,12 +119,12 @@ awt::Size SAL_CALL SvtRulerAccessible::getSize() throw( RuntimeException, std::e
...
@@ -119,12 +119,12 @@ awt::Size SAL_CALL SvtRulerAccessible::getSize() throw( RuntimeException, std::e
return
AWTSize
(
GetBoundingBox
().
GetSize
()
);
return
AWTSize
(
GetBoundingBox
().
GetSize
()
);
}
}
sal_B
ool
SAL_CALL
SvtRulerAccessible
::
isShowing
()
throw
(
RuntimeException
)
b
ool
SAL_CALL
SvtRulerAccessible
::
isShowing
()
throw
(
RuntimeException
)
{
{
return
sal_T
rue
;
return
t
rue
;
}
}
sal_B
ool
SAL_CALL
SvtRulerAccessible
::
isVisible
()
throw
(
RuntimeException
)
b
ool
SAL_CALL
SvtRulerAccessible
::
isVisible
()
throw
(
RuntimeException
)
{
{
::
osl
::
MutexGuard
aGuard
(
m_aMutex
);
::
osl
::
MutexGuard
aGuard
(
m_aMutex
);
...
@@ -133,9 +133,9 @@ sal_Bool SAL_CALL SvtRulerAccessible::isVisible() throw( RuntimeException )
...
@@ -133,9 +133,9 @@ sal_Bool SAL_CALL SvtRulerAccessible::isVisible() throw( RuntimeException )
return
mpRepr
->
IsVisible
();
return
mpRepr
->
IsVisible
();
}
}
sal_B
ool
SAL_CALL
SvtRulerAccessible
::
isFocusTraversable
()
throw
(
RuntimeException
)
b
ool
SAL_CALL
SvtRulerAccessible
::
isFocusTraversable
()
throw
(
RuntimeException
)
{
{
return
sal_T
rue
;
return
t
rue
;
}
}
//===== XAccessibleContext ==================================================
//===== XAccessibleContext ==================================================
...
...
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