Darrell Anderson 12 years ago
commit a430ade7c3

@ -478,7 +478,7 @@ int KMFolderCachedImap::writeUidCache()
str << lastUid() << endl; str << lastUid() << endl;
uidcache.flush(); uidcache.flush();
if ( uidcache.status() == IO_Ok ) { if ( uidcache.status() == IO_Ok ) {
fsync( uidcache.handle() ); /* this is probably overkill */ // fsync( uidcache.handle() ); /* this is probably overkill */
uidcache.close(); uidcache.close();
if ( uidcache.status() == IO_Ok ) if ( uidcache.status() == IO_Ok )
return 0; return 0;

@ -13,6 +13,9 @@
class MailComposerIface : virtual public DCOPObject class MailComposerIface : virtual public DCOPObject
{ {
K_DCOP K_DCOP
public: MailComposerIface() : DCOPObject("MailComposerIface") {}
k_dcop: k_dcop:
/** /**
Send message. Send message.

@ -1214,7 +1214,7 @@ void KNote::updateLayout()
if( m_tool ) { if( m_tool ) {
m_tool->setGeometry( m_tool->setGeometry(
contentsRect().x(), contentsRect().x(),
contentsRect().bottom() - m_tool->height() + 1, contentsRect().bottom() - (m_tool->isHidden() ? 0 : m_tool->height()) + 1,
contentsRect().width(), contentsRect().width(),
m_tool->height() m_tool->height()
); );

Loading…
Cancel
Save