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
af7bd0c9
Kaydet (Commit)
af7bd0c9
authored
Kas 29, 2012
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
android: WaE: variable never read
Change-Id: I35f465a085081563214d4e5c9e7fb8a7ac0ef6f7
üst
3e0e88f6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
IcsLinearLayout.java
...om/actionbarsherlock/internal/widget/IcsLinearLayout.java
+2
-4
No files found.
android/abs-lib/src/com/actionbarsherlock/internal/widget/IcsLinearLayout.java
Dosyayı görüntüle @
af7bd0c9
...
@@ -199,8 +199,7 @@ public class IcsLinearLayout extends NineLinearLayout {
...
@@ -199,8 +199,7 @@ public class IcsLinearLayout extends NineLinearLayout {
if
(
child
==
null
)
{
if
(
child
==
null
)
{
bottom
=
getHeight
()
-
getPaddingBottom
()
-
mDividerHeight
;
bottom
=
getHeight
()
-
getPaddingBottom
()
-
mDividerHeight
;
}
else
{
}
else
{
final
LayoutParams
lp
=
(
LayoutParams
)
child
.
getLayoutParams
();
bottom
=
child
.
getBottom
();
bottom
=
child
.
getBottom
()
/* + lp.bottomMargin*/
;
}
}
drawHorizontalDivider
(
canvas
,
bottom
);
drawHorizontalDivider
(
canvas
,
bottom
);
}
}
...
@@ -226,8 +225,7 @@ public class IcsLinearLayout extends NineLinearLayout {
...
@@ -226,8 +225,7 @@ public class IcsLinearLayout extends NineLinearLayout {
if
(
child
==
null
)
{
if
(
child
==
null
)
{
right
=
getWidth
()
-
getPaddingRight
()
-
mDividerWidth
;
right
=
getWidth
()
-
getPaddingRight
()
-
mDividerWidth
;
}
else
{
}
else
{
final
LayoutParams
lp
=
(
LayoutParams
)
child
.
getLayoutParams
();
right
=
child
.
getRight
();
right
=
child
.
getRight
()
/* + lp.rightMargin*/
;
}
}
drawVerticalDivider
(
canvas
,
right
);
drawVerticalDivider
(
canvas
,
right
);
}
}
...
...
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