diff options
-rw-r--r-- | extensions/source/update/check/updatecheck.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/extensions/source/update/check/updatecheck.cxx b/extensions/source/update/check/updatecheck.cxx index dd4aa29ce312..46a4d8dbeb61 100644 --- a/extensions/source/update/check/updatecheck.cxx +++ b/extensions/source/update/check/updatecheck.cxx @@ -650,8 +650,7 @@ DownloadThread::run() if( ! m_aDownload.start(m_aURL, aLocalFile, aDownloadDest ) ) { // retry every 15s unless the dialog is not visible - TimeValue tv; - tv.Seconds = 15; + TimeValue tv(15, 0); if( ! UpdateCheck::get()->isDialogShowing() ) { |