aboutsummaryrefslogtreecommitdiff
path: root/include/datetime
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-12-08 13:41:39 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-12-08 13:41:39 +0100
commitb7950517a055b6aee4d0806e32dbd466a6ae59d0 (patch)
treed10281b8d1c2221e25d1e0c159884df0ffda520a /include/datetime
parentdabd7c8c65ef0132dbf75360ae83e9505cbe614d (diff)
downloadayatana-indicator-datetime-b7950517a055b6aee4d0806e32dbd466a6ae59d0.tar.gz
ayatana-indicator-datetime-b7950517a055b6aee4d0806e32dbd466a6ae59d0.tar.bz2
ayatana-indicator-datetime-b7950517a055b6aee4d0806e32dbd466a6ae59d0.zip
README.md: Add some manual line breaks.
Diffstat (limited to 'include/datetime')
-rw-r--r--include/datetime/alarm-queue-simple.h2
-rw-r--r--include/datetime/appointment.h2
-rw-r--r--include/datetime/engine-eds.h2
-rw-r--r--include/datetime/engine-mock.h2
-rw-r--r--include/datetime/engine.h2
-rw-r--r--include/datetime/exporter.h8
-rw-r--r--include/datetime/settings.h2
-rw-r--r--include/datetime/state.h2
-rw-r--r--include/datetime/utils.h2
-rw-r--r--include/datetime/wakeup-timer-mainloop.h2
-rw-r--r--include/datetime/wakeup-timer-powerd.h2
11 files changed, 14 insertions, 14 deletions
diff --git a/include/datetime/alarm-queue-simple.h b/include/datetime/alarm-queue-simple.h
index 12d8206..1dd6163 100644
--- a/include/datetime/alarm-queue-simple.h
+++ b/include/datetime/alarm-queue-simple.h
@@ -32,7 +32,7 @@ namespace indicator {
namespace datetime {
/**
- * \brief A #AlarmQueue implementation
+ * \brief A #AlarmQueue implementation
*/
class SimpleAlarmQueue: public AlarmQueue
{
diff --git a/include/datetime/appointment.h b/include/datetime/appointment.h
index 2cd1807..700bb2e 100644
--- a/include/datetime/appointment.h
+++ b/include/datetime/appointment.h
@@ -54,7 +54,7 @@ public:
bool is_ubuntu_alarm() const { return type == UBUNTU_ALARM; }
std::string uid;
- std::string color;
+ std::string color;
std::string summary;
std::string activation_url;
DateTime begin;
diff --git a/include/datetime/engine-eds.h b/include/datetime/engine-eds.h
index 20b1f84..d25a825 100644
--- a/include/datetime/engine-eds.h
+++ b/include/datetime/engine-eds.h
@@ -39,7 +39,7 @@ namespace datetime {
/**
* Class wrapper around EDS so multiple #EdsPlanners can share resources
- *
+ *
* @see EdsPlanner
*/
class EdsEngine: public Engine
diff --git a/include/datetime/engine-mock.h b/include/datetime/engine-mock.h
index 9cffdcc..0bee29c 100644
--- a/include/datetime/engine-mock.h
+++ b/include/datetime/engine-mock.h
@@ -32,7 +32,7 @@ namespace datetime {
/**
* A no-op #Engine
- *
+ *
* @see Engine
*/
class MockEngine: public Engine
diff --git a/include/datetime/engine.h b/include/datetime/engine.h
index 4d07290..91145fa 100644
--- a/include/datetime/engine.h
+++ b/include/datetime/engine.h
@@ -37,7 +37,7 @@ namespace datetime {
/**
* Class wrapper around the backend that generates appointments
- *
+ *
* @see EdsEngine
* @see EdsPlanner
*/
diff --git a/include/datetime/exporter.h b/include/datetime/exporter.h
index fb21db2..abc32ff 100644
--- a/include/datetime/exporter.h
+++ b/include/datetime/exporter.h
@@ -34,7 +34,7 @@ namespace indicator {
namespace datetime {
/**
- * \brief Exports actions and menus to DBus.
+ * \brief Exports actions and menus to DBus.
*/
class Exporter
{
@@ -51,9 +51,9 @@ private:
class Impl;
std::unique_ptr<Impl> p;
- // disable copying
- Exporter(const Exporter&) =delete;
- Exporter& operator=(const Exporter&) =delete;
+ // disable copying
+ Exporter(const Exporter&) =delete;
+ Exporter& operator=(const Exporter&) =delete;
};
} // namespace datetime
diff --git a/include/datetime/settings.h b/include/datetime/settings.h
index 631c547..343cd81 100644
--- a/include/datetime/settings.h
+++ b/include/datetime/settings.h
@@ -36,7 +36,7 @@ namespace datetime {
* See the descriptions in data/org.ayatana.indicator.datetime.gschema.xml
* for more information on specific properties.
*/
-class Settings
+class Settings
{
public:
Settings() =default;
diff --git a/include/datetime/state.h b/include/datetime/state.h
index 235c023..9a35905 100644
--- a/include/datetime/state.h
+++ b/include/datetime/state.h
@@ -26,7 +26,7 @@
#include <datetime/planner-upcoming.h>
#include <datetime/settings.h>
#include <datetime/timezones.h>
-
+
#include <core/property.h>
#include <memory> // std::shared_ptr
diff --git a/include/datetime/utils.h b/include/datetime/utils.h
index 7cac9fd..dbef8ac 100644
--- a/include/datetime/utils.h
+++ b/include/datetime/utils.h
@@ -48,7 +48,7 @@ gchar * generate_full_format_string_at_time (GDateTime * now,
their other locale settings when generating time format string */
const char* T_ (const char * msg);
-
+
G_END_DECLS
#endif /* INDICATOR_DATETIME_UTILS_H */
diff --git a/include/datetime/wakeup-timer-mainloop.h b/include/datetime/wakeup-timer-mainloop.h
index 1bcd675..533de9e 100644
--- a/include/datetime/wakeup-timer-mainloop.h
+++ b/include/datetime/wakeup-timer-mainloop.h
@@ -34,7 +34,7 @@ namespace datetime {
***/
/**
- * \brief a WakeupTimer implemented with g_timeout_add()
+ * \brief a WakeupTimer implemented with g_timeout_add()
*/
class MainloopWakeupTimer: public WakeupTimer
{
diff --git a/include/datetime/wakeup-timer-powerd.h b/include/datetime/wakeup-timer-powerd.h
index a855aa6..f8d3af9 100644
--- a/include/datetime/wakeup-timer-powerd.h
+++ b/include/datetime/wakeup-timer-powerd.h
@@ -34,7 +34,7 @@ namespace datetime {
***/
/**
- * \brief a WakeupTimer implemented with g_timeout_add()
+ * \brief a WakeupTimer implemented with g_timeout_add()
*/
class PowerdWakeupTimer: public WakeupTimer
{