diff options
-rw-r--r-- | kmail/kmfoldercachedimap.cpp | 2 | ||||
-rw-r--r-- | kmail/mailcomposerIface.h | 3 | ||||
-rw-r--r-- | knotes/knote.cpp | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/kmail/kmfoldercachedimap.cpp b/kmail/kmfoldercachedimap.cpp index 72f1113c2..e7009a237 100644 --- a/kmail/kmfoldercachedimap.cpp +++ b/kmail/kmfoldercachedimap.cpp @@ -478,7 +478,7 @@ int KMFolderCachedImap::writeUidCache() str << lastUid() << endl; uidcache.flush(); if ( uidcache.status() == IO_Ok ) { - fsync( uidcache.handle() ); /* this is probably overkill */ + // fsync( uidcache.handle() ); /* this is probably overkill */ uidcache.close(); if ( uidcache.status() == IO_Ok ) return 0; diff --git a/kmail/mailcomposerIface.h b/kmail/mailcomposerIface.h index 130a99e1f..189a573d4 100644 --- a/kmail/mailcomposerIface.h +++ b/kmail/mailcomposerIface.h @@ -13,6 +13,9 @@ class MailComposerIface : virtual public DCOPObject { K_DCOP + + public: MailComposerIface() : DCOPObject("MailComposerIface") {} + k_dcop: /** Send message. diff --git a/knotes/knote.cpp b/knotes/knote.cpp index e68c8ca29..4b0a9172c 100644 --- a/knotes/knote.cpp +++ b/knotes/knote.cpp @@ -1214,7 +1214,7 @@ void KNote::updateLayout() if( m_tool ) { m_tool->setGeometry( contentsRect().x(), - contentsRect().bottom() - m_tool->height() + 1, + contentsRect().bottom() - (m_tool->isHidden() ? 0 : m_tool->height()) + 1, contentsRect().width(), m_tool->height() ); |