~ubuntu-branches/ubuntu/trusty/kdepimlibs/trusty

« back to all changes in this revision

Viewing changes to kioslave/mbox/mboxfile.cpp

  • Committer: Package Import Robot
  • Author(s): Rohan Garg, Rohan Garg, Philip Muškovac
  • Date: 2013-11-23 17:36:44 UTC
  • mfrom: (1.1.102)
  • Revision ID: package-import@ubuntu.com-20131123173644-p5ow94192ezsny8g
Tags: 4:4.11.80-0ubuntu1
[ Rohan Garg ]
* New upstream beta release
  - Bump akonadi requirement to 1.10.45
  - Update install files
  - Update symbols

[ Philip Muškovac ]
* kdepimlibs-dev/-dbg breaks/replaces kdepim-runtime/-dbg (<< 4:4.11.80)

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#include <assert.h>
22
22
 
23
23
MBoxFile::MBoxFile( const UrlInfo* info, MBoxProtocol* parent )
24
 
        : m_info( info ),
25
 
        m_mbox( parent )
 
24
    : m_info( info ),
 
25
      m_mbox( parent )
26
26
{
27
 
        assert( m_info );
 
27
    assert( m_info );
28
28
}
29
29
 
30
30
MBoxFile::~MBoxFile()
33
33
 
34
34
bool MBoxFile::lock()
35
35
{
36
 
        //Not implemented
37
 
        return true;
 
36
    //Not implemented
 
37
    return true;
38
38
}
39
39
 
40
40
void MBoxFile::unlock()
41
41
{
42
 
        //Not implemented
 
42
    //Not implemented
43
43
}
44
 
 
45