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
8f119986
Kaydet (Commit)
8f119986
authored
Eyl 14, 2012
tarafından
Michael Meeks
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sdremote: unwind a couple of crasher / corner cases
üst
9ac86f48
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
12 deletions
+7
-12
PresentationActivity.java
...c/org/libreoffice/impressremote/PresentationActivity.java
+4
-9
SelectorActivity.java
...e/src/org/libreoffice/impressremote/SelectorActivity.java
+3
-3
No files found.
android/sdremote/src/org/libreoffice/impressremote/PresentationActivity.java
Dosyayı görüntüle @
8f119986
...
...
@@ -349,17 +349,12 @@ public class PresentationActivity extends SherlockFragmentActivity {
@Override
public
void
run
()
{
CharSequence
aTimeString
;
long
aTime
=
mCommunicationService
.
getSlideShow
().
getTimer
()
.
getTimeMillis
();
if
(
mTimerOn
)
{
aTimeString
=
DateFormat
.
format
(
aTimerFormat
,
aTime
);
}
else
{
aTimeString
=
DateFormat
.
format
(
aTimeFormat
,
System
.
currentTimeMillis
());
}
long
aTime
=
System
.
currentTimeMillis
();
if
(
mTimerOn
&&
mCommunicationService
!=
null
)
aTime
=
mCommunicationService
.
getSlideShow
().
getTimer
().
getTimeMillis
();
aTimeString
=
DateFormat
.
format
(
aTimerFormat
,
aTime
);
mTimeLabel
.
setText
(
aTimeString
);
timerHandler
.
postDelayed
(
this
,
50
);
}
};
...
...
android/sdremote/src/org/libreoffice/impressremote/SelectorActivity.java
Dosyayı görüntüle @
8f119986
...
...
@@ -130,7 +130,8 @@ public class SelectorActivity extends SherlockActivity {
@Override
public
void
onBackPressed
()
{
mCommunicationService
.
stopSearching
();
if
(
mCommunicationService
!=
null
)
mCommunicationService
.
stopSearching
();
Intent
aIntent
=
new
Intent
(
this
,
CommunicationService
.
class
);
stopService
(
aIntent
);
super
.
onBackPressed
();
...
...
@@ -325,4 +326,4 @@ public class SelectorActivity extends SherlockActivity {
return
super
.
onContextItemSelected
(
item
);
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
\ No newline at end of file
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
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