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
b1cd18bc
Kaydet (Commit)
b1cd18bc
authored
Eyl 19, 2012
tarafından
Andrzej J.R. Hunt
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Return empty string for null notes to avoid showing null in UI.
Change-Id: I1f60ce48d9d11b074aa268eda118c427b3cc62c0
üst
1ec2482f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
NetworkClient.java
...ibreoffice/impressremote/communication/NetworkClient.java
+5
-0
SlideShow.java
...rg/libreoffice/impressremote/communication/SlideShow.java
+6
-1
No files found.
android/sdremote/src/org/libreoffice/impressremote/communication/NetworkClient.java
Dosyayı görüntüle @
b1cd18bc
...
...
@@ -56,6 +56,11 @@ public class NetworkClient extends Client {
// Wait until we get the appropriate string back...
String
aTemp
=
mReader
.
readLine
();
if
(
aTemp
==
null
)
{
throw
new
IOException
(
"End of stream reached before any data received."
);
}
while
(!
aTemp
.
equals
(
"LO_SERVER_SERVER_PAIRED"
))
{
if
(
aTemp
.
equals
(
"LO_SERVER_VALIDATING_PIN"
))
{
// Broadcast that we need a pin screen.
...
...
android/sdremote/src/org/libreoffice/impressremote/communication/SlideShow.java
Dosyayı görüntüle @
b1cd18bc
...
...
@@ -62,7 +62,12 @@ public class SlideShow {
}
public
String
getNotes
(
int
aSlide
)
{
return
mNotes
.
get
(
aSlide
);
String
aNote
=
mNotes
.
get
(
aSlide
);
if
(
aNote
!=
null
)
{
return
aNote
;
}
else
{
return
""
;
}
}
// ---------------------------------------------------- TIMER --------------
...
...
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