summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTobias Madl <tobias.madl.dev@gmail.com>2014-11-17 09:25:25 +0000
committerTobias Madl <tobias.madl.dev@gmail.com>2014-12-09 12:34:58 +0000
commitd9f9cb96c9874767656bcb02dfdc661336afbddf (patch)
treea6bc8a858071c793bd81ccee7bfb231e44dfbb6e /include
parentd843f3de731667a298a83fc66637c7f983f3b24d (diff)
changed timers to idles
Change-Id: Icb6e3e72939ab0d04d9f099f1e476131a223de48
Diffstat (limited to 'include')
-rw-r--r--include/sfx2/dinfdlg.hxx4
-rw-r--r--include/svx/numvset.hxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/include/sfx2/dinfdlg.hxx b/include/sfx2/dinfdlg.hxx
index 63422698cbfc..e345bb873698 100644
--- a/include/sfx2/dinfdlg.hxx
+++ b/include/sfx2/dinfdlg.hxx
@@ -422,8 +422,8 @@ private:
std::vector< CustomPropertyLine* > m_aCustomPropertiesLines;
CustomPropertyLine* m_pCurrentLine;
SvNumberFormatter m_aNumberFormatter;
- Timer m_aEditLoseFocusTimer;
- Timer m_aBoxLoseFocusTimer;
+ Idle m_aEditLoseFocusIdle;
+ Idle m_aBoxLoseFocusIdle;
Link m_aRemovedHdl;
DECL_LINK( TypeHdl, CustomPropertiesTypeBox* );
diff --git a/include/svx/numvset.hxx b/include/svx/numvset.hxx
index ae5a402fd377..4bc16cfc1225 100644
--- a/include/svx/numvset.hxx
+++ b/include/svx/numvset.hxx
@@ -90,7 +90,7 @@ class SVX_DLLPUBLIC SvxNumValueSet : public ValueSet
class SVX_DLLPUBLIC SvxBmpNumValueSet : public SvxNumValueSet
{
- Timer aFormatTimer;
+ Idle aFormatIdle;
bool bGrfNotFound;
void init();
@@ -101,7 +101,7 @@ class SVX_DLLPUBLIC SvxBmpNumValueSet : public SvxNumValueSet
void SetGrfNotFound(bool bSet) {bGrfNotFound = bSet;}
bool IsGrfNotFound()const {return bGrfNotFound;}
- Timer& GetFormatTimer() {return aFormatTimer;}
+ Idle& GetFormatIdle() {return aFormatIdle;}
public:
SvxBmpNumValueSet(vcl::Window* pParent, WinBits nWinBits = WB_TABSTOP);