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
28f5e1b2
Kaydet (Commit)
28f5e1b2
authored
Agu 15, 2011
tarafından
Julien Nabet
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Some PMD cleaning
üst
265a458c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
6 deletions
+7
-6
FormControlTest.java
forms/qa/integration/forms/FormControlTest.java
+4
-2
AcceleratorsConfigurationTest.java
...a/complex/accelerators/AcceleratorsConfigurationTest.java
+1
-2
FileHelper.java
l10ntools/source/filter/utils/FileHelper.java
+2
-2
No files found.
forms/qa/integration/forms/FormControlTest.java
Dosyayı görüntüle @
28f5e1b2
...
...
@@ -679,10 +679,12 @@ public class FormControlTest extends complexlib.ComplexTestCase implements XSQLE
{
try
{
if
(
fieldName
.
equals
(
"f_time"
)
)
if
(
(
"f_time"
).
equals
(
fieldName
)
)
// http://bugs.mysql.com/bug.php?id=5681
return
true
;
if
(
fieldName
==
null
)
{
return
false
;
}
int
currentValue
=
((
Integer
)
getControlModel
(
fieldName
).
getPropertyValue
(
propertyName
)).
intValue
();
if
(
currentValue
!=
requiredValue
)
{
...
...
framework/qa/complex/accelerators/AcceleratorsConfigurationTest.java
Dosyayı görüntüle @
28f5e1b2
...
...
@@ -836,8 +836,7 @@ public class AcceleratorsConfigurationTest
private
XMultiServiceFactory
getMSF
()
{
final
XMultiServiceFactory
xMSF1
=
UnoRuntime
.
queryInterface
(
XMultiServiceFactory
.
class
,
connection
.
getComponentContext
().
getServiceManager
());
return
xMSF1
;
return
(
UnoRuntime
.
queryInterface
(
XMultiServiceFactory
.
class
,
connection
.
getComponentContext
().
getServiceManager
()));
}
// setup and close connections
...
...
l10ntools/source/filter/utils/FileHelper.java
Dosyayı görüntüle @
28f5e1b2
...
...
@@ -80,8 +80,8 @@ public class FileHelper
// => correct this problem first, otherwise office can't use these URL's
if
(
(
sFileURL
!=
null
)
&&
(
sFileURL
.
startsWith
(
"file:/"
)
==
true
)
&&
(
sFileURL
.
startsWith
(
"file://"
)
==
false
)
(
sFileURL
.
startsWith
(
"file:/"
))
&&
(
!
sFileURL
.
startsWith
(
"file://"
)
)
)
{
java
.
lang
.
StringBuffer
sWorkBuffer
=
new
java
.
lang
.
StringBuffer
(
sFileURL
);
...
...
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