diff options
author | Noel Grandin <noel@peralex.com> | 2014-10-27 20:41:11 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2014-10-28 06:12:28 +0000 |
commit | 17a99a9074a7d25cc7e13bf7aaac0fa11e2174a0 (patch) | |
tree | fa314e333575af0d219dd87ff589a58736f55f03 /sd/source/ui/dlg/dlgass.cxx | |
parent | 282e954477f904524ca192256c4e33ab0585e2f6 (diff) |
fdo#84938: replace TIMEF_ constants with enum
Change-Id: Ia6aa4e21fef46b20d1d8996d2f15855b8ba1776e
Reviewed-on: https://gerrit.libreoffice.org/12114
Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sd/source/ui/dlg/dlgass.cxx')
-rw-r--r-- | sd/source/ui/dlg/dlgass.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/dlg/dlgass.cxx b/sd/source/ui/dlg/dlgass.cxx index 08eb6f324d3c..9338dc40d6b4 100644 --- a/sd/source/ui/dlg/dlgass.cxx +++ b/sd/source/ui/dlg/dlgass.cxx @@ -520,9 +520,9 @@ AssistentDlgImpl::AssistentDlgImpl( vcl::Window* pWindow, const Link& rFinishLin mpPage3PresTypeLiveRB->Check(); mpPage3PresTypeLiveRB->SetClickHdl( LINK(this,AssistentDlgImpl, PresTypeHdl )); mpPage3PresTypeKioskRB->SetClickHdl( LINK(this,AssistentDlgImpl, PresTypeHdl )); - mpPage3PresTimeTMF->SetFormat( TIMEF_SEC ); + mpPage3PresTimeTMF->SetFormat( TimeFieldFormat::F_SEC ); mpPage3PresTimeTMF->SetTime( ::tools::Time( 0, 0, 10 ) ); - mpPage3BreakTMF->SetFormat( TIMEF_SEC ); + mpPage3BreakTMF->SetFormat( TimeFieldFormat::F_SEC ); mpPage3BreakTMF->SetTime( ::tools::Time( 0, 0, 10 ) ); mpPage3LogoCB->Check(); |