Skip to content

Commit

Permalink
Merge pull request #39 from dcaliste/service
Browse files Browse the repository at this point in the history
[mkcal] Drop Extended* object from email API
  • Loading branch information
pvuorela committed May 22, 2023
2 parents 1caae4d + 4b1f2f0 commit 22292b4
Show file tree
Hide file tree
Showing 6 changed files with 166 additions and 268 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.16)

project(mkcal
VERSION 0.7.17
VERSION 0.7.19
DESCRIPTION "Mkcal calendar library")

set(CMAKE_AUTOMOC ON)
Expand Down
4 changes: 1 addition & 3 deletions plugins/defaultinvitationplugin/defaultinvitationplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@


#include "defaultinvitationplugin.h"
#include <extendedcalendar.h>
#include <QDebug>
#include <QTimer>

Expand Down Expand Up @@ -231,8 +230,7 @@ bool DefaultInvitationPlugin::sendInvitation(const QString &accountId, const QSt
emails.append(att.email());
}

const QString &description = invitation->description();
const bool res = d->sendMail(accountId, emails, invitation->summary(), description, ical, false);
const bool res = d->sendMail(accountId, emails, invitation->summary(), invitation->description(), ical, false);

d->uninit();
return res;
Expand Down
2 changes: 1 addition & 1 deletion rpm/mkcal-qt5.spec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Name: mkcal-qt5

Summary: SQlite storage backend for KCalendarCore
Version: 0.7.17
Version: 0.7.19
Release: 1
License: LGPLv2+
URL: https://github.com/sailfishos/mkcal
Expand Down

0 comments on commit 22292b4

Please sign in to comment.