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
76c10920
Kaydet (Commit)
76c10920
authored
Agu 06, 2014
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
java: remove unused parameters
Change-Id: I9ae22afc27ac0d2051f06885f363845e9b4ce2ff
üst
ebe8dbe0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
8 deletions
+3
-8
AccessibilityTreeModel.java
toolkit/test/accessibility/AccessibilityTreeModel.java
+2
-2
UnoDialog2.java
wizards/com/sun/star/wizards/ui/UnoDialog2.java
+1
-6
No files found.
toolkit/test/accessibility/AccessibilityTreeModel.java
Dosyayı görüntüle @
76c10920
...
@@ -242,7 +242,7 @@ public class AccessibilityTreeModel
...
@@ -242,7 +242,7 @@ public class AccessibilityTreeModel
// index relative to its parent. Therefore the
// index relative to its parent. Therefore the
// more expensive fireTreeStructureChanged is
// more expensive fireTreeStructureChanged is
// necessary.
// necessary.
fireTreeNodesInserted
(
create
Event
(
xParent
,
xChild
));
fireTreeNodesInserted
(
create
ChildUpdateEvent
(
xParent
));
updateNode
(
xParent
,
AccessibleTreeHandler
.
class
);
updateNode
(
xParent
,
AccessibleTreeHandler
.
class
);
}
}
maCanvas
.
repaint
();
maCanvas
.
repaint
();
...
@@ -344,7 +344,7 @@ public class AccessibilityTreeModel
...
@@ -344,7 +344,7 @@ public class AccessibilityTreeModel
/** Create a TreeModelEvent object that informs listeners that one child
/** Create a TreeModelEvent object that informs listeners that one child
has been removed from or inserted into its parent.
has been removed from or inserted into its parent.
*/
*/
public
TreeModelEvent
create
Event
(
XAccessibleContext
xParent
,
XAccessible
xChild
)
public
TreeModelEvent
create
ChildUpdateEvent
(
XAccessibleContext
xParent
)
{
{
AccessibleTreeNode
aParentNode
=
maNodeMap
.
GetNode
(
xParent
);
AccessibleTreeNode
aParentNode
=
maNodeMap
.
GetNode
(
xParent
);
return
createEvent
(
aParentNode
,
xParent
);
return
createEvent
(
aParentNode
,
xParent
);
...
...
wizards/com/sun/star/wizards/ui/UnoDialog2.java
Dosyayı görüntüle @
76c10920
...
@@ -75,7 +75,7 @@ public class UnoDialog2 extends UnoDialog
...
@@ -75,7 +75,7 @@ public class UnoDialog2 extends UnoDialog
return
insertButton
(
sName
,
actionPerformed
,
this
,
sPropNames
,
oPropValues
);
return
insertButton
(
sName
,
actionPerformed
,
this
,
sPropNames
,
oPropValues
);
}
}
public
XButton
insertImageButton
(
String
sName
,
com
.
sun
.
star
.
awt
.
XActionListener
actionPerformed
,
Object
eventTarget
,
String
[]
sPropNames
,
Object
[]
oPropValues
)
public
XButton
insertImageButton
(
String
sName
,
com
.
sun
.
star
.
awt
.
XActionListener
actionPerformed
,
String
[]
sPropNames
,
Object
[]
oPropValues
)
{
{
XButton
xButton
=
(
XButton
)
insertControlModel2
(
"com.sun.star.awt.UnoControlButtonModel"
,
sName
,
sPropNames
,
oPropValues
,
XButton
.
class
);
XButton
xButton
=
(
XButton
)
insertControlModel2
(
"com.sun.star.awt.UnoControlButtonModel"
,
sName
,
sPropNames
,
oPropValues
,
XButton
.
class
);
...
@@ -87,11 +87,6 @@ public class UnoDialog2 extends UnoDialog
...
@@ -87,11 +87,6 @@ public class UnoDialog2 extends UnoDialog
return
xButton
;
return
xButton
;
}
}
public
XButton
insertImageButton
(
String
sName
,
com
.
sun
.
star
.
awt
.
XActionListener
actionPerformed
,
String
[]
sPropNames
,
Object
[]
oPropValues
)
{
return
insertImageButton
(
sName
,
actionPerformed
,
this
,
sPropNames
,
oPropValues
);
}
public
XCheckBox
insertCheckBox
(
String
sName
,
String
itemChanged
,
Object
eventTarget
,
String
[]
sPropNames
,
Object
[]
oPropValues
)
public
XCheckBox
insertCheckBox
(
String
sName
,
String
itemChanged
,
Object
eventTarget
,
String
[]
sPropNames
,
Object
[]
oPropValues
)
{
{
...
...
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