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
95e1ecbf
Kaydet (Commit)
95e1ecbf
authored
11 years ago
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
remove some unnecessary casts
Change-Id: I63b0ce257b40caa53aef337e953ce8d07862d292
üst
e10300dc
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
17 deletions
+10
-17
DEPSSolverImpl.java
.../src/com/sun/star/comp/Calc/NLPSolver/DEPSSolverImpl.java
+4
-5
SpreadsheetRawReportTarget.java
...entaho/output/spreadsheet/SpreadsheetRawReportTarget.java
+6
-10
AccessibilityTreeModel.java
toolkit/test/accessibility/AccessibilityTreeModel.java
+0
-2
No files found.
nlpsolver/src/com/sun/star/comp/Calc/NLPSolver/DEPSSolverImpl.java
Dosyayı görüntüle @
95e1ecbf
...
...
@@ -98,7 +98,7 @@ public final class DEPSSolverImpl extends BaseEvolutionarySolver
public
String
[]
getSupportedServiceNames
()
{
return
m_serviceNames
;
}
// com.sun.star.sheet.XSolver:
private
DEPSAgent
[]
m_agents
;
...
...
@@ -142,8 +142,7 @@ public final class DEPSSolverImpl extends BaseEvolutionarySolver
m_agents
[
i
].
setGTBehavior
(
psGTBehavior
);
m_agents
[
i
].
setSpecComparator
(
m_specCompareEngine
);
if
(
m_agents
[
i
]
instanceof
ILibEngine
)
((
ILibEngine
)
m_agents
[
i
]).
setLibrary
(
m_library
);
m_agents
[
i
].
setLibrary
(
m_library
);
}
//Learn:
...
...
@@ -160,7 +159,7 @@ public final class DEPSSolverImpl extends BaseEvolutionarySolver
if
(
m_solverStatusDialog
.
getUserState
()
==
IEvolutionarySolverStatusDialog
.
CONTINUE
)
lockDocument
();
m_toleratedCount
=
0
;
m_toleratedMin
=
-
1.0
*
m_tolerance
.
getValue
();
m_toleratedMax
=
m_tolerance
.
getValue
();
...
...
@@ -196,7 +195,7 @@ public final class DEPSSolverImpl extends BaseEvolutionarySolver
m_solverStatusDialog
.
setRuntime
(
runtime
+
(
System
.
nanoTime
()
-
startTime
));
m_xReschedule
.
reschedule
();
}
applySolution
();
//show the current solution
unlockDocument
();
//allow the solution to be displayed
...
...
This diff is collapsed.
Click to expand it.
reportbuilder/java/org/libreoffice/report/pentaho/output/spreadsheet/SpreadsheetRawReportTarget.java
Dosyayı görüntüle @
95e1ecbf
...
...
@@ -124,18 +124,14 @@ public class SpreadsheetRawReportTarget extends OfficeDocumentReportTarget
{
return
0
;
}
if
(
arg0
instanceof
ColumnB
oundary
)
if
(
boundary
>
arg0
.
b
oundary
)
{
if
(
boundary
>
arg0
.
boundary
)
{
return
1
;
}
else
{
return
-
1
;
}
return
1
;
}
else
{
return
-
1
;
}
return
1
;
}
public
boolean
equals
(
final
Object
obj
)
...
...
This diff is collapsed.
Click to expand it.
toolkit/test/accessibility/AccessibilityTreeModel.java
Dosyayı görüntüle @
95e1ecbf
...
...
@@ -34,8 +34,6 @@ public class AccessibilityTreeModel
public
AccessibilityTreeModel
(
AccessibleTreeNode
aRoot
)
{
// create default node (unless we have a 'proper' node)
if
(
!
(
aRoot
instanceof
AccessibleTreeNode
)
)
aRoot
=
new
StringNode
(
"Root"
,
null
);
setRoot
(
aRoot
);
maNodeMap
=
new
NodeMap
();
...
...
This diff is collapsed.
Click to expand it.
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