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
e2f3e17c
Kaydet (Commit)
e2f3e17c
authored
Eki 07, 2011
tarafından
Tor Lillqvist
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
WaE: unreachable code
üst
ff86d3ac
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
7 deletions
+10
-7
swdoc-test.cxx
sw/qa/core/swdoc-test.cxx
+6
-1
vbalistlevel.cxx
sw/source/ui/vba/vbalistlevel.cxx
+0
-1
vbastyle.cxx
sw/source/ui/vba/vbastyle.cxx
+0
-3
vbasystem.cxx
sw/source/ui/vba/vbasystem.cxx
+4
-2
No files found.
sw/qa/core/swdoc-test.cxx
Dosyayı görüntüle @
e2f3e17c
...
@@ -328,7 +328,12 @@ void SwDocTest::randomTest()
...
@@ -328,7 +328,12 @@ void SwDocTest::randomTest()
"Jim"
,
"Bob"
,
"JimBobina"
,
"Helga"
,
"Gertrude"
,
"Spagna"
,
"Hurtleweed"
"Jim"
,
"Bob"
,
"JimBobina"
,
"Helga"
,
"Gertrude"
,
"Spagna"
,
"Hurtleweed"
};
};
for
(
sal_uInt16
rlm
=
0
;
rlm
<
SAL_N_ELEMENTS
(
modes
);
rlm
++
)
for
(
sal_uInt16
rlm
=
0
;
rlm
<
SAL_N_ELEMENTS
(
modes
);
#ifdef COMPLEX // otherwise it returns at end of loop, so avoid "unreachable code" warning
rlm
++
#endif
)
{
{
#ifdef COMPLEX
#ifdef COMPLEX
m_pDoc
->
ClearDoc
();
m_pDoc
->
ClearDoc
();
...
...
sw/source/ui/vba/vbalistlevel.cxx
Dosyayı görüntüle @
e2f3e17c
...
@@ -105,7 +105,6 @@ void SAL_CALL SwVbaListLevel::setAlignment( ::sal_Int32 _alignment ) throw (uno:
...
@@ -105,7 +105,6 @@ void SAL_CALL SwVbaListLevel::setAlignment( ::sal_Int32 _alignment ) throw (uno:
uno
::
Reference
<
::
ooo
::
vba
::
word
::
XFont
>
SAL_CALL
SwVbaListLevel
::
getFont
()
throw
(
uno
::
RuntimeException
)
uno
::
Reference
<
::
ooo
::
vba
::
word
::
XFont
>
SAL_CALL
SwVbaListLevel
::
getFont
()
throw
(
uno
::
RuntimeException
)
{
{
throw
uno
::
RuntimeException
(
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"Not implemented"
)
),
uno
::
Reference
<
uno
::
XInterface
>
()
);
throw
uno
::
RuntimeException
(
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"Not implemented"
)
),
uno
::
Reference
<
uno
::
XInterface
>
()
);
return
uno
::
Reference
<
word
::
XFont
>
();
}
}
void
SAL_CALL
SwVbaListLevel
::
setFont
(
const
uno
::
Reference
<
::
ooo
::
vba
::
word
::
XFont
>&
/*_font*/
)
throw
(
uno
::
RuntimeException
)
void
SAL_CALL
SwVbaListLevel
::
setFont
(
const
uno
::
Reference
<
::
ooo
::
vba
::
word
::
XFont
>&
/*_font*/
)
throw
(
uno
::
RuntimeException
)
...
...
sw/source/ui/vba/vbastyle.cxx
Dosyayı görüntüle @
e2f3e17c
...
@@ -177,7 +177,6 @@ uno::Reference< word::XParagraphFormat > SAL_CALL SwVbaStyle::getParagraphFormat
...
@@ -177,7 +177,6 @@ uno::Reference< word::XParagraphFormat > SAL_CALL SwVbaStyle::getParagraphFormat
{
{
throw
uno
::
RuntimeException
();
throw
uno
::
RuntimeException
();
}
}
return
uno
::
Reference
<
word
::
XParagraphFormat
>
();
}
}
::
sal_Bool
SAL_CALL
SwVbaStyle
::
getAutomaticallyUpdate
()
throw
(
uno
::
RuntimeException
)
::
sal_Bool
SAL_CALL
SwVbaStyle
::
getAutomaticallyUpdate
()
throw
(
uno
::
RuntimeException
)
...
@@ -206,7 +205,6 @@ uno::Any SAL_CALL SwVbaStyle::getBaseStyle() throw (uno::RuntimeException)
...
@@ -206,7 +205,6 @@ uno::Any SAL_CALL SwVbaStyle::getBaseStyle() throw (uno::RuntimeException)
{
{
throw
uno
::
RuntimeException
();
throw
uno
::
RuntimeException
();
}
}
return
uno
::
Any
();
}
}
void
SAL_CALL
SwVbaStyle
::
setBaseStyle
(
const
uno
::
Any
&
_basestyle
)
throw
(
uno
::
RuntimeException
)
void
SAL_CALL
SwVbaStyle
::
setBaseStyle
(
const
uno
::
Any
&
_basestyle
)
throw
(
uno
::
RuntimeException
)
...
@@ -238,7 +236,6 @@ uno::Any SAL_CALL SwVbaStyle::getNextParagraphStyle() throw (uno::RuntimeExcepti
...
@@ -238,7 +236,6 @@ uno::Any SAL_CALL SwVbaStyle::getNextParagraphStyle() throw (uno::RuntimeExcepti
{
{
throw
uno
::
RuntimeException
();
throw
uno
::
RuntimeException
();
}
}
return
uno
::
Any
();
}
}
void
SAL_CALL
SwVbaStyle
::
setNextParagraphStyle
(
const
uno
::
Any
&
_nextparagraphstyle
)
throw
(
uno
::
RuntimeException
)
void
SAL_CALL
SwVbaStyle
::
setNextParagraphStyle
(
const
uno
::
Any
&
_nextparagraphstyle
)
throw
(
uno
::
RuntimeException
)
...
...
sw/source/ui/vba/vbasystem.cxx
Dosyayı görüntüle @
e2f3e17c
...
@@ -121,9 +121,10 @@ uno::Any PrivateProfileStringListener::getValueEvent()
...
@@ -121,9 +121,10 @@ uno::Any PrivateProfileStringListener::getValueEvent()
}
}
return
uno
::
makeAny
(
sValue
);
return
uno
::
makeAny
(
sValue
);
#e
ndif
#e
lse
throw
uno
::
RuntimeException
(
rtl
::
OUString
(
throw
uno
::
RuntimeException
(
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"Only support on Windows"
)),
uno
::
Reference
<
uno
::
XInterface
>
()
);
RTL_CONSTASCII_USTRINGPARAM
(
"Only support on Windows"
)),
uno
::
Reference
<
uno
::
XInterface
>
()
);
#endif
}
}
return
uno
::
makeAny
(
sValue
);
return
uno
::
makeAny
(
sValue
);
...
@@ -165,9 +166,10 @@ void PrivateProfileStringListener::setValueEvent( const css::uno::Any& value )
...
@@ -165,9 +166,10 @@ void PrivateProfileStringListener::setValueEvent( const css::uno::Any& value )
}
}
}
}
return
;
return
;
#e
ndif
#e
lse
throw
uno
::
RuntimeException
(
rtl
::
OUString
(
throw
uno
::
RuntimeException
(
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"Not implemented"
)),
uno
::
Reference
<
uno
::
XInterface
>
()
);
RTL_CONSTASCII_USTRINGPARAM
(
"Not implemented"
)),
uno
::
Reference
<
uno
::
XInterface
>
()
);
#endif
}
}
}
}
...
...
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