~ubuntu-branches/ubuntu/vivid/kdepim/vivid

« back to all changes in this revision

Viewing changes to akonadiconsole/mainwindow.h

  • Committer: Package Import Robot
  • Author(s): Scott Kitterman, Jonathan Riddell, Rohan Garg, Scott Kitterman
  • Date: 2012-11-21 13:12:36 UTC
  • mfrom: (0.2.33)
  • Revision ID: package-import@ubuntu.com-20121121131236-32ijw9a2txrar80k
Tags: 4:4.9.80-0ubuntu1
[ Jonathan Riddell ]
* New upstream beta release

[ Rohan Garg ]
* Add nepomuk-core-dev to build-deps

[ Scott Kitterman ]
* Add new package, libpimcommon4
  - Add libpimcommon4.install
  - Add to debian/control, including kdepim-dbg and kdepim-dev depends
  - Add to kdepim-dev.install
* Remove usr/bin/backupmail and related files from kmail.install as they are
  not provided by upstream anymore
* Add usr/bin/pimsettingexporter and related files to kmail.install
* Add libnepomukwidgets-dev to build-depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#ifndef AKONADICONSOLE_MAINWINDOW_H
23
23
#define AKONADICONSOLE_MAINWINDOW_H
24
24
 
 
25
#include "mainwidget.h"
 
26
 
25
27
#include <KXmlGuiWindow>
26
28
 
27
29
class MainWindow : public KXmlGuiWindow
30
32
 
31
33
  public:
32
34
    explicit MainWindow( QWidget *parent = 0 );
 
35
    ~MainWindow();
33
36
 
34
37
  protected:
35
38
    bool queryExit();
 
39
 
 
40
  private:
 
41
    MainWidget *mMain;
36
42
};
37
43
 
38
44
#endif