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
e16a07f7
Kaydet (Commit)
e16a07f7
authored
Şub 05, 2016
tarafından
Chris Sherlock
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
solenv: fix mkdocs.sh to take into account projects with no inc dir
Change-Id: I959279c11f0ae5f372936ee3db605716cab37c21
üst
47538ac7
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
13 deletions
+12
-13
AccessibleBrowseBox.hxx
...bility/inc/accessibility/extended/AccessibleBrowseBox.hxx
+9
-9
mkdocs.sh
solenv/bin/mkdocs.sh
+3
-4
No files found.
accessibility/inc/accessibility/extended/AccessibleBrowseBox.hxx
Dosyayı görüntüle @
e16a07f7
...
...
@@ -50,7 +50,7 @@ protected:
/** sets the XAccessible which created the context
<p>To be called only once, and only if in the ctor NULL was passed.</p>
To be called only once, and only if in the ctor NULL was passed.
*/
void
setCreator
(
const
css
::
uno
::
Reference
<
css
::
accessibility
::
XAccessible
>&
_rxCreator
...
...
@@ -61,7 +61,7 @@ protected:
virtual
void
SAL_CALL
disposing
()
override
;
protected
:
// XAccessibleContext
-----------------------------------------------------
// XAccessibleContext
/** @return The count of visible children. */
virtual
sal_Int32
SAL_CALL
getAccessibleChildCount
()
...
...
@@ -74,7 +74,7 @@ protected:
throw
(
css
::
lang
::
IndexOutOfBoundsException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
override
;
// XAccessibleComponent
---------------------------------------------------
// XAccessibleComponent
/** @return
The accessible child rendered under the given point.
...
...
@@ -88,7 +88,7 @@ protected:
virtual
void
SAL_CALL
grabFocus
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
override
;
// XServiceInfo
-----------------------------------------------------------
// XServiceInfo
/** @return
The name of this class.
...
...
@@ -144,7 +144,7 @@ public:
}
protected
:
// internal virtual methods
-----------------------------------------------
// internal virtual methods
/** @attention This method requires locked mutex's and a living object.
@return The bounding box (VCL rect.) relative to the parent window. */
...
...
@@ -153,7 +153,7 @@ protected:
@return The bounding box (VCL rect.) in screen coordinates. */
virtual
Rectangle
implGetBoundingBoxOnScreen
()
override
;
// internal helper methods
------------------------------------------------
// internal helper methods
/** This method creates (once) and returns the accessible data table child.
@attention This method requires locked mutex's and a living object.
...
...
@@ -181,15 +181,15 @@ protected:
virtual
AccessibleBrowseBoxTable
*
createAccessibleTable
();
private
:
// members
----------------------------------------------------------------
// members
std
::
unique_ptr
<
AccessibleBrowseBoxImpl
>
m_xImpl
;
};
/** the XAccessible which creates/returns an AccessibleBrowseBox
<p>
The instance holds its XAccessibleContext with a hard reference, while
the context holds this instance weak.
</p>
The instance holds its XAccessibleContext with a hard reference, while
the context holds this instance weak.
*/
class
AccessibleBrowseBoxAccess
:
public
cppu
::
WeakImplHelper
<
css
::
accessibility
::
XAccessible
>
,
...
...
solenv/bin/mkdocs.sh
Dosyayı görüntüle @
e16a07f7
...
...
@@ -119,6 +119,7 @@ if [ -z "$INPUT_PROJECTS" ]; then
INPUT_PROJECTS
=
"
`
ls
*
/Module_
*
.mk |
sed
's#/.*##'
`
"
fi
# output directory for generated documentation
BASE_OUTPUT
=
"
$1
"
mkdir
-p
"
$BASE_OUTPUT
"
||
{
...
...
@@ -163,16 +164,14 @@ do
# project header files can be in $PROJECT/inc and/pr include/$PROJECT
if
[
-d
"
$PROJECT
/inc"
]
;
then
PROJECT_INCLUDE
=
"
$PROJECT
/inc"
else
PROJECT_INCLUDE
=
""
fi
if
[
-d
"include/
$PROJECT
"
]
;
then
PROJECT_INCLUDE
=
"
$PROJECT_INCLUDE
include/
$PROJECT
"
fi
if
[
"
$PROJECT
"
==
"vcl"
]
;
then
PROJECT_INCLUDE
=
"
$PROJECT_INCLUDE
$PROJECT
/source/filter/igif/
$PROJECT
/source/filter/ixbm
$PROJECT
/source/filter/igif/
$PROJECT
/source/filter/jpeg"
fi
DOXYGEN_INPUT
=
`
printf
"%s"
"
$PROJECT
/source
$PROJECT_INCLUDE
"
`
DOXYGEN_OUTPUT
=
"
$BASE_OUTPUT
/
$PROJECT
"
...
...
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