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
f2a3848b
Kaydet (Commit)
f2a3848b
authored
Ara 20, 2013
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Put all these back in...
Change-Id: If2168a57e0c77cf7fe85d66a6c6fd6a810d45035
üst
8cdb1466
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
datastream.cxx
sc/source/ui/docshell/datastream.cxx
+11
-2
No files found.
sc/source/ui/docshell/datastream.cxx
Dosyayı görüntüle @
f2a3848b
...
@@ -65,11 +65,15 @@ private:
...
@@ -65,11 +65,15 @@ private:
{
{
while
(
!
mbTerminate
)
while
(
!
mbTerminate
)
{
{
// wait for a small amount of time, so that
// painting methods have a chance to be called.
// And also to make UI more responsive.
TimeValue
const
aTime
=
{
0
,
1000
};
maStart
.
wait
();
maStart
.
wait
();
maStart
.
reset
();
maStart
.
reset
();
if
(
!
mbTerminate
)
if
(
!
mbTerminate
)
while
(
mpDataStream
->
ImportData
())
while
(
mpDataStream
->
ImportData
())
;
wait
(
aTime
)
;
};
};
}
}
};
};
...
@@ -347,8 +351,9 @@ void DataStream::SetRefreshOnEmptyLine( bool bVal )
...
@@ -347,8 +351,9 @@ void DataStream::SetRefreshOnEmptyLine( bool bVal )
void
DataStream
::
Refresh
()
void
DataStream
::
Refresh
()
{
{
// Hard recalc will repaint the grid area.
Application
::
Yield
();
Application
::
Yield
();
// Hard recalc will repaint the grid area.
mpDocShell
->
DoHardRecalc
(
true
);
mpDocShell
->
DoHardRecalc
(
true
);
mpDocShell
->
SetDocumentModified
(
true
);
mpDocShell
->
SetDocumentModified
(
true
);
...
@@ -510,10 +515,14 @@ void DataStream::Text2Doc() {}
...
@@ -510,10 +515,14 @@ void DataStream::Text2Doc() {}
bool
DataStream
::
ImportData
()
bool
DataStream
::
ImportData
()
{
{
SolarMutexGuard
aGuard
;
if
(
!
mbValuesInLine
)
if
(
!
mbValuesInLine
)
// We no longer support this mode. To be deleted later.
// We no longer support this mode. To be deleted later.
return
false
;
return
false
;
if
(
ScDocShell
::
GetViewData
()
->
GetViewShell
()
->
NeedsRepaint
())
return
mbRunning
;
Text2Doc
();
Text2Doc
();
return
mbRunning
;
return
mbRunning
;
}
}
...
...
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