diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-24 19:33:28 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-24 19:33:28 +0000 |
commit | c437f19f371b5678e0772a5f922fc3587864ca4e (patch) | |
tree | ab33a9046cd22c2ee69172eac02aa63d2ab7a3a1 /korganizer/kocore.cpp | |
parent | 90fb05e4f85dccfda4a6fb0b970f6f5c9f4b67d1 (diff) | |
download | tdepim-c437f19f371b5678e0772a5f922fc3587864ca4e.tar.gz tdepim-c437f19f371b5678e0772a5f922fc3587864ca4e.zip |
Fixed CalDAV crash when event editor left open during automatic reload
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1167492 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'korganizer/kocore.cpp')
-rw-r--r-- | korganizer/kocore.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/korganizer/kocore.cpp b/korganizer/kocore.cpp index b9d404e70..d5ed4f39b 100644 --- a/korganizer/kocore.cpp +++ b/korganizer/kocore.cpp @@ -41,6 +41,8 @@ #include <tqwidget.h> +static bool m_editoropen = false; + KOCore *KOCore::mSelf = 0; KOCore *KOCore::self() @@ -62,6 +64,16 @@ KOCore::~KOCore() mSelf = 0; } +bool KOCore::editorWindowOpen() +{ + return m_editoropen; +} + +void KOCore::setEditorWindowOpen(bool open) +{ + m_editoropen = open; +} + KTrader::OfferList KOCore::availablePlugins( const TQString &type, int version ) { TQString constraint; |