~ubuntu-branches/ubuntu/raring/kdepim/raring-proposed

« back to all changes in this revision

Viewing changes to korganizer/korganizer.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2012-06-07 07:56:38 UTC
  • mfrom: (0.2.27)
  • Revision ID: package-import@ubuntu.com-20120607075638-0luhdq11z7sgvs4m
Tags: 4:4.8.80-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
*/
30
30
 
31
31
#include "korganizer.h"
 
32
#include "actionmanager.h"
32
33
#include "calendarview.h"
33
 
#include "koviewmanager.h"
34
 
#include "kodialogmanager.h"
35
 
#include "kowindowlist.h"
36
 
#include "koprefs.h"
37
34
#include "kocore.h"
38
 
#include "actionmanager.h"
39
35
#include "koglobals.h"
40
36
#include "korganizerifaceimpl.h"
41
37
 
42
 
#include <korganizer/part.h>
43
 
 
 
38
#include <libkdepim/progressdialog.h>
44
39
#include <libkdepim/statusbarprogresswidget.h>
45
 
#include <libkdepim/progressdialog.h>
46
 
 
47
 
#include <kio/netaccess.h>
48
 
 
49
 
#include <kglobal.h>
50
 
#include <kdebug.h>
51
 
#include <kiconloader.h>
52
 
#include <kstandarddirs.h>
53
 
#include <kstandardshortcut.h>
54
 
#include <kfiledialog.h>
55
 
#include <kaction.h>
56
 
#include <kactioncollection.h>
57
 
#include <kstandardaction.h>
58
 
#include <kedittoolbar.h>
59
 
#include <ktemporaryfile.h>
60
 
#include <kmenubar.h>
61
 
#include <kmessagebox.h>
62
 
#include <kwindowsystem.h>
63
 
#include <ktip.h>
64
 
#include <KStandardGuiItem>
65
 
#include <kstatusbar.h>
66
 
#include <kshortcutsdialog.h>
67
 
#include <krecentfilesaction.h>
68
 
 
69
 
#include <QCursor>
70
 
#include <QTimer>
71
 
#include <QFile>
72
 
#include <QLabel>
73
 
#include <QLayout>
74
 
 
75
 
#include <stdlib.h>
76
 
 
77
 
using namespace KParts;
78
 
#include "korganizer.moc"
79
 
using namespace KOrg;
 
40
 
 
41
#include <KAction>
 
42
#include <KActionCollection>
 
43
#include <KDebug>
 
44
#include <KShortcutsDialog>
 
45
#include <KStandardAction>
 
46
#include <KStatusBar>
80
47
 
81
48
KOrganizer::KOrganizer() : KParts::MainWindow(), KOrg::MainWindow()
82
49
{
219
186
 
220
187
bool KOrganizer::queryExit()
221
188
{
222
 
  // Don't call writeSettings here, because filename isn't valid anymore. It is
223
 
  // now called in queryClose.
 
189
  // Don't call writeSettings here, because filename isn't valid anymore.
 
190
  // It is now called in queryClose.
224
191
//  writeSettings();
225
192
  return true;
226
193
}
298
265
 
299
266
  setCaption( title, false );
300
267
}
 
268
 
 
269
#include "korganizer.moc"