aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRobert Tari <robert@tari.in>2021-02-10 13:06:05 +0100
committerRobert Tari <robert@tari.in>2021-05-11 11:00:41 +0200
commitb8b206c6e84757c6d4d36cec619a1e7c37d1eb5f (patch)
tree2463a2275c43f0427c72bae8ef41d28f2644578a /tools
parent13c1c80b1e0cedea938960baf2229e29ab350830 (diff)
downloadlibayatana-indicator-b8b206c6e84757c6d4d36cec619a1e7c37d1eb5f.tar.gz
libayatana-indicator-b8b206c6e84757c6d4d36cec619a1e7c37d1eb5f.tar.bz2
libayatana-indicator-b8b206c6e84757c6d4d36cec619a1e7c37d1eb5f.zip
Move source files to src
Diffstat (limited to 'tools')
-rw-r--r--tools/Makefile.am2
-rw-r--r--tools/indicator-loader.c8
2 files changed, 5 insertions, 5 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am
index e871921..7d25b5c 100644
--- a/tools/Makefile.am
+++ b/tools/Makefile.am
@@ -23,7 +23,7 @@ ayatana_indicator_loader_CFLAGS = \
ayatana_indicator_loader_LDADD = \
$(LIBINDICATOR_LIBS) \
$(LIBINDICATOR_IDO_LIBS) \
- -L$(top_builddir)/libayatana-indicator/.libs \
+ -L$(top_builddir)/src/.libs \
$(INDICATOR_LIB)
# We duplicate these here because Automake won't let us use $(VER) on the left hand side.
diff --git a/tools/indicator-loader.c b/tools/indicator-loader.c
index 5b236db..a0db1b4 100644
--- a/tools/indicator-loader.c
+++ b/tools/indicator-loader.c
@@ -17,7 +17,7 @@
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License version 3.0 for more details.
- *
+ *
* You should have received a copy of the GNU General Public
* License along with this library. If not, see
* <http://www.gnu.org/licenses/>.
@@ -25,9 +25,9 @@
#include <gtk/gtk.h>
#include <libayatana-ido/libayatana-ido.h>
-#include <libayatana-indicator/indicator-object.h>
+#include "src//indicator-object.h"
#if GTK_CHECK_VERSION (3,0,0)
- #include <libayatana-indicator/indicator-ng.h>
+ #include "src/indicator-ng.h"
#endif
static GHashTable * entry_to_menu_item = NULL;
@@ -159,7 +159,7 @@ entry_added (IndicatorObject * io,
gtk_widget_show (menu_item);
}
-static void
+static void
entry_removed (__attribute__((unused)) IndicatorObject * io,
IndicatorObjectEntry * entry,
__attribute__((unused)) gpointer user_data)