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
KAlarm
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
PIM
KAlarm
Commits
cd7abb45
Commit
cd7abb45
authored
Jan 01, 2017
by
David Jarvie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 374337: Fix Export Alarms file save error
parent
2ce74e06
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
8 deletions
+12
-8
Changelog
Changelog
+5
-0
src/alarmcalendar.cpp
src/alarmcalendar.cpp
+3
-4
src/kalarm.h
src/kalarm.h
+2
-2
src/main.cpp
src/main.cpp
+2
-2
No files found.
Changelog
View file @
cd7abb45
KAlarm Change Log
=== Version 2.11.12 (KDE Applications 16.12.1) --- 1 January 2017 ===
+ Fix Export Alarms file save error [KDE Bug 374337]
+ Fix arrow/page up/down keys not working in date edit control
(needs KDE Frameworks 5.30) [KDE Bug 373886]
=== Version 2.11.11 (KDE Applications 16.12.0) --- 16 November 2016 ===
+ Fix crash on exit [KDE Bug 372223]
...
...
src/alarmcalendar.cpp
View file @
cd7abb45
/*
* alarmcalendar.cpp - KAlarm calendar file access
* Program: kalarm
* Copyright © 2001-201
4
by David Jarvie <djarvie@kde.org>
* Copyright © 2001-201
7
by David Jarvie <djarvie@kde.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
@@ -730,11 +730,10 @@ bool AlarmCalendar::exportAlarms(const KAEvent::List& events, QWidget* parent)
&
append
);
if
(
file
.
isEmpty
())
return
false
;
QUrl
url
;
url
.
setPath
(
file
);
QUrl
url
=
QUrl
::
fromLocalFile
(
file
);
if
(
!
url
.
isValid
())
{
qCDebug
(
KALARM_LOG
)
<<
"Invalid URL"
;
qCDebug
(
KALARM_LOG
)
<<
"Invalid URL"
<<
url
;
return
false
;
}
qCDebug
(
KALARM_LOG
)
<<
url
.
toDisplayString
();
...
...
src/kalarm.h
View file @
cd7abb45
/*
* kalarm.h - global header file
* Program: kalarm
* Copyright © 2001-201
6
by David Jarvie <djarvie@kde.org>
* Copyright © 2001-201
7
by David Jarvie <djarvie@kde.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
@@ -24,7 +24,7 @@
#undef QT3_SUPPORT
#define VERSION_SUFFIX "-5"
#define KALARM_VERSION "2.11.1
1
" VERSION_SUFFIX
#define KALARM_VERSION "2.11.1
2
" VERSION_SUFFIX
#define KALARM_NAME "KAlarm"
#define KALARM_DBUS_SERVICE "org.kde.kalarm" // D-Bus service name of KAlarm application
...
...
src/main.cpp
View file @
cd7abb45
/*
* main.cpp
* Program: kalarm
* Copyright © 2001-201
6
by David Jarvie <djarvie@kde.org>
* Copyright © 2001-201
7
by David Jarvie <djarvie@kde.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
@@ -50,7 +50,7 @@ int main(int argc, char* argv[])
QStringLiteral
(
KALARM_VERSION
),
i18n
(
"Personal alarm message, command and email scheduler for KDE"
),
KAboutLicense
::
GPL
,
ki18n
(
"Copyright 2001-%1, David Jarvie"
).
subs
(
201
6
).
toString
(),
QString
(),
ki18n
(
"Copyright 2001-%1, David Jarvie"
).
subs
(
201
7
).
toString
(),
QString
(),
QStringLiteral
(
"http://www.astrojar.org.uk/kalarm"
));
aboutData
.
addAuthor
(
i18n
(
"David Jarvie"
),
i18n
(
"Author"
),
QStringLiteral
(
"djarvie@kde.org"
));
aboutData
.
setOrganizationDomain
(
"kde.org"
);
...
...
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