aboutsummaryrefslogtreecommitdiff
path: root/tests/dummy-indicator-entry-func.h
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-05-12 13:07:56 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-05-12 13:07:56 +0200
commit025c376068f63d8c2aa5899a3c0b1b827370da28 (patch)
tree99d5ce170fa25fd17f5d4569e8b3b3656c9fe44b /tests/dummy-indicator-entry-func.h
parentaa6723b9cc3dcac5b9bdd87944a8c99b74f16ba2 (diff)
parentc277aa68455b232c37a4c52b39e948a6ab0b0e11 (diff)
downloadlibayatana-indicator-025c376068f63d8c2aa5899a3c0b1b827370da28.tar.gz
libayatana-indicator-025c376068f63d8c2aa5899a3c0b1b827370da28.tar.bz2
libayatana-indicator-025c376068f63d8c2aa5899a3c0b1b827370da28.zip
Merge branch 'tari01-pr/move-to-cmake'
Attributes GH PR #38: https://github.com/AyatanaIndicators/libayatana-indicator/pull/38
Diffstat (limited to 'tests/dummy-indicator-entry-func.h')
-rw-r--r--tests/dummy-indicator-entry-func.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/tests/dummy-indicator-entry-func.h b/tests/dummy-indicator-entry-func.h
index c1fa8d3..97b3a04 100644
--- a/tests/dummy-indicator-entry-func.h
+++ b/tests/dummy-indicator-entry-func.h
@@ -2,9 +2,11 @@
Test for libindicator
Copyright 2012 Canonical Ltd.
+Copyright 2021 AyatanaIndicators
Authors:
Ted Gould <ted@canonical.com>
+ Robert Tari <robert@tari.in>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
@@ -26,8 +28,8 @@ License along with this library. If not, see
#include <glib.h>
#include <glib-object.h>
-#include "libayatana-indicator/indicator.h"
-#include "libayatana-indicator/indicator-object.h"
+#include "indicator.h"
+#include "indicator-object.h"
G_BEGIN_DECLS
@@ -42,15 +44,15 @@ typedef struct _DummyIndicatorEntryFunc DummyIndicatorEntryFunc;
typedef struct _DummyIndicatorEntryFuncClass DummyIndicatorEntryFuncClass;
struct _DummyIndicatorEntryFuncClass {
- IndicatorObjectClass parent_class;
+ IndicatorObjectClass parent_class;
};
struct _DummyIndicatorEntryFunc {
- IndicatorObject parent;
+ IndicatorObject parent;
- gboolean entry_activate_called;
- gboolean entry_activate_window_called;
- gboolean entry_close_called;
+ gboolean entry_activate_called;
+ gboolean entry_activate_window_called;
+ gboolean entry_close_called;
};
#endif /* __DUMMY_INDICATOR_ENTRY_FUNC__ */