Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
KDE Pim
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Unmaintained
KDE Pim
Commits
46c53b72
Commit
46c53b72
authored
Jun 14, 2016
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Debug--
parent
aaf37085
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
12 additions
and
12 deletions
+12
-12
korganizer/src/actionmanager.cpp
korganizer/src/actionmanager.cpp
+4
-4
korganizer/src/dialog/exportwebdialog.cpp
korganizer/src/dialog/exportwebdialog.cpp
+1
-1
korganizer/src/job/htmlexportjob.cpp
korganizer/src/job/htmlexportjob.cpp
+1
-1
korganizer/src/koapp.cpp
korganizer/src/koapp.cpp
+1
-1
korganizer/src/koeventview.cpp
korganizer/src/koeventview.cpp
+1
-1
korganizer/src/korganizer.cpp
korganizer/src/korganizer.cpp
+3
-3
korganizer/src/prefs/koprefs.cpp
korganizer/src/prefs/koprefs.cpp
+1
-1
No files found.
korganizer/src/actionmanager.cpp
View file @
46c53b72
...
...
@@ -1128,7 +1128,7 @@ bool ActionManager::saveAsURL(const QUrl &url)
#ifdef AKONADI_PORT_DISABLED // can go away, kept for reference
bool
ActionManager
::
saveModifiedURL
()
{
qCDebug
(
KORGANIZER_LOG
);
// If calendar isn't modified do nothing.
if
(
!
mCalendarView
->
isModified
())
{
...
...
@@ -1193,7 +1193,7 @@ QUrl ActionManager::getSaveURL()
void
ActionManager
::
saveProperties
(
KConfigGroup
&
config
)
{
qCDebug
(
KORGANIZER_LOG
);
config
.
writeEntry
(
"UseResourceCalendar"
,
!
mMainWindow
->
hasDocument
());
if
(
mMainWindow
->
hasDocument
())
{
...
...
@@ -1209,7 +1209,7 @@ void ActionManager::readProperties(const KConfigGroup &)
// Configuration changed as a result of the options dialog.
void
ActionManager
::
updateConfig
()
{
qCDebug
(
KORGANIZER_LOG
);
mNextXDays
->
setText
(
i18np
(
"&Next Day"
,
"&Next %1 Days"
,
KOPrefs
::
instance
()
->
mNextXDays
));
...
...
@@ -1382,7 +1382,7 @@ bool ActionManager::addIncidence(const QString &ical)
void
ActionManager
::
downloadNewStuff
()
{
qCDebug
(
KORGANIZER_LOG
);
KNS3
::
DownloadDialog
dialog
(
mCalendarView
);
dialog
.
exec
();
foreach
(
const
KNS3
::
Entry
&
e
,
dialog
.
installedEntries
())
{
...
...
korganizer/src/dialog/exportwebdialog.cpp
View file @
46c53b72
...
...
@@ -108,7 +108,7 @@ void ExportWebDialog::slotOk()
void
ExportWebDialog
::
slotDefault
()
{
qCDebug
(
KORGANIZER_LOG
);
if
(
KMessageBox
::
warningContinueCancel
(
this
,
...
...
korganizer/src/job/htmlexportjob.cpp
View file @
46c53b72
...
...
@@ -614,7 +614,7 @@ void HtmlExportJob::createTodoList(QTextStream *ts)
void
HtmlExportJob
::
createTodo
(
QTextStream
*
ts
,
const
KCalCore
::
Todo
::
Ptr
&
todo
)
{
qCDebug
(
KORGANIZER_LOG
);
const
bool
completed
=
todo
->
isCompleted
();
...
...
korganizer/src/koapp.cpp
View file @
46c53b72
...
...
@@ -51,7 +51,7 @@ KOrganizerApp::~KOrganizerApp()
int
KOrganizerApp
::
activate
(
const
QStringList
&
args
,
const
QString
&
workingDir
)
{
qCDebug
(
KORGANIZER_LOG
);
static
bool
first
=
true
;
if
(
isSessionRestored
()
&&
first
)
{
KOrg
::
MainWindow
*
korg
=
ActionManager
::
findInstance
(
QUrl
());
...
...
korganizer/src/koeventview.cpp
View file @
46c53b72
...
...
@@ -152,7 +152,7 @@ void KOEventView::showNewEventPopup()
void
KOEventView
::
defaultAction
(
const
Akonadi
::
Item
&
aitem
)
{
qCDebug
(
KORGANIZER_LOG
);
const
KCalCore
::
Incidence
::
Ptr
incidence
=
CalendarSupport
::
incidence
(
aitem
);
if
(
!
incidence
)
{
qCDebug
(
KORGANIZER_LOG
)
<<
"Ouch, null incidence"
;
...
...
korganizer/src/korganizer.cpp
View file @
46c53b72
...
...
@@ -53,7 +53,7 @@ KOrganizer::KOrganizer() : KParts::MainWindow(), KOrg::MainWindow(), mPluginInte
// modal subdialogs will only affect this dialog, not the other windows
setAttribute
(
Qt
::
WA_GroupLeader
);
qCDebug
(
KORGANIZER_LOG
);
KOCore
::
self
()
->
addXMLGUIClient
(
this
,
this
);
// setMinimumSize(600,400); // make sure we don't get resized too small...
...
...
@@ -147,7 +147,7 @@ void KOrganizer::readSettings()
void
KOrganizer
::
writeSettings
()
{
qCDebug
(
KORGANIZER_LOG
);
KSharedConfig
::
Ptr
config
=
KSharedConfig
::
openConfig
();
mActionManager
->
writeSettings
();
...
...
@@ -177,7 +177,7 @@ void KOrganizer::slotEditKeys()
bool
KOrganizer
::
queryClose
()
{
qCDebug
(
KORGANIZER_LOG
);
bool
close
=
mActionManager
->
queryClose
();
...
...
korganizer/src/prefs/koprefs.cpp
View file @
46c53b72
...
...
@@ -62,7 +62,7 @@ KOPrefs::KOPrefs() : KOPrefsBase()
KOPrefs
::~
KOPrefs
()
{
qCDebug
(
KORGANIZER_LOG
);
mEventViewsPrefs
->
writeConfig
();
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment