summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Benjamin <nystire@gmail.com>2013-08-05 14:35:36 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-08-05 16:49:33 +0200
commitaa5365eb3fc49e6b7ffa2897b7bbd801b173b26b (patch)
treed3ea8690c9ef1ac0db6a2ec48d22ae2d8539242c
parente5b18db8026f1488f73b5fed7fa62ba4990cea46 (diff)
downloadsubsurface-aa5365eb3fc49e6b7ffa2897b7bbd801b173b26b.tar.gz
Clean up code to remove false messages about errors in Eclipse
Imported the subsurface project into Eclipse to try and pull apart how it all works together. Added an include for profile.h and some brackets around a condition, but didn't make any functional changes (I hope). These 2 changes should be purely cosmetic. Signed-off-by: Benjamin Fogel <benjaminfogel@yahoo.co.uk> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--divelist-gtk.c1
-rw-r--r--gps.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/divelist-gtk.c b/divelist-gtk.c
index 79613e012..49f4b143c 100644
--- a/divelist-gtk.c
+++ b/divelist-gtk.c
@@ -34,6 +34,7 @@
#include "display.h"
#include "display-gtk.h"
#include "webservice.h"
+#include "profile.h"
#include <gdk-pixbuf/gdk-pixdata.h>
#include "satellite.h"
diff --git a/gps.c b/gps.c
index a3806dee8..6f62b624e 100644
--- a/gps.c
+++ b/gps.c
@@ -147,7 +147,7 @@ static void add_gps_point(OsmGpsMap *map, float latitude, float longitude)
static void key_press_event(GtkWidget *window, GdkEventKey *event, gpointer data)
{
if ((event->string != NULL && event->keyval == GDK_Escape) ||
- (event->string != NULL && event->keyval == GDK_w && event->state & GDK_CONTROL_MASK)) {
+ (event->string != NULL && event->keyval == GDK_w && (event->state & GDK_CONTROL_MASK))) {
gtk_widget_destroy(window);
}
}