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
2af58ba7
Kaydet (Commit)
2af58ba7
authored
Haz 13, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#707016 Uncaught exception
Change-Id: Ie2299485b8017232b6cfcb855b6f2dbff2c5db6e
üst
e8f40ec9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
XRange.idl
oovbaapi/ooo/vba/excel/XRange.idl
+1
-1
vbarange.cxx
sc/source/ui/vba/vbarange.cxx
+1
-1
vbarange.hxx
sc/source/ui/vba/vbarange.hxx
+1
-1
No files found.
oovbaapi/ooo/vba/excel/XRange.idl
Dosyayı görüntüle @
2af58ba7
...
...
@@ -129,7 +129,7 @@ interface XRange
any
BorderAround
(
[
in
]
any
LineStyle
,
[
in
]
any
Weight
,
[
in
]
any
ColorIndex
,
[
in
]
any
Color
)
;
void
AutoFilter
(
[
in
]
any
Field
,
[
in
]
any
Criteria1
,
[
in
]
any
Operator
,
[
in
]
any
Criteria2
,
[
in
]
any
VisibleDropDown
)
;
void
Insert
(
[
in
]
any
Shift
,
[
in
]
any
CopyOrigin
)
;
void
Autofit
(
)
;
void
Autofit
()
raises
(
com
::
sun
::
star
::
script
::
BasicErrorException
)
;
void
PrintOut
(
[
in
]
any
From
,
[
in
]
any
To
,
[
in
]
any
Copies
,
[
in
]
any
Preview
,
[
in
]
any
ActivePrinter
,
[
in
]
any
PrintToFile
,
[
in
]
any
Collate
,
[
in
]
any
PrToFileName
)
;
void
AutoFill
(
[
in
]
XRange
Destination
,
[
in
]
any
Type
)
;
boolean
GoalSeek
(
[
in
]
any
Goal
,
[
in
]
XRange
ChangingCell
)
;
...
...
sc/source/ui/vba/vbarange.cxx
Dosyayı görüntüle @
2af58ba7
...
...
@@ -4703,7 +4703,7 @@ ScVbaRange::Insert( const uno::Any& Shift, const uno::Any& /*CopyOrigin*/ ) thro
}
void
SAL_CALL
ScVbaRange
::
Autofit
()
throw
(
uno
::
RuntimeException
,
std
::
exception
)
ScVbaRange
::
Autofit
()
throw
(
script
::
BasicErrorException
,
uno
::
RuntimeException
,
std
::
exception
)
{
sal_Int32
nLen
=
m_Areas
->
getCount
();
if
(
nLen
>
1
)
...
...
sc/source/ui/vba/vbarange.hxx
Dosyayı görüntüle @
2af58ba7
...
...
@@ -247,7 +247,7 @@ public:
virtual
void
SAL_CALL
AutoFilter
(
const
css
::
uno
::
Any
&
Field
,
const
css
::
uno
::
Any
&
Criteria1
,
const
css
::
uno
::
Any
&
Operator
,
const
css
::
uno
::
Any
&
Criteria2
,
const
css
::
uno
::
Any
&
VisibleDropDown
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
Insert
(
const
css
::
uno
::
Any
&
Shift
,
const
css
::
uno
::
Any
&
CopyOrigin
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
Autofit
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
Autofit
()
throw
(
css
::
script
::
BasicErrorException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
PrintOut
(
const
css
::
uno
::
Any
&
From
,
const
css
::
uno
::
Any
&
To
,
const
css
::
uno
::
Any
&
Copies
,
const
css
::
uno
::
Any
&
Preview
,
const
css
::
uno
::
Any
&
ActivePrinter
,
const
css
::
uno
::
Any
&
PrintToFile
,
const
css
::
uno
::
Any
&
Collate
,
const
css
::
uno
::
Any
&
PrToFileName
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
AutoFill
(
const
css
::
uno
::
Reference
<
ov
::
excel
::
XRange
>&
Destination
,
const
css
::
uno
::
Any
&
Type
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
void
SAL_CALL
Calculate
(
)
throw
(
css
::
script
::
BasicErrorException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
...
...
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