aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2014-10-05 09:07:01 +0200
committerGuido Günther <agx@sigxcpu.org>2014-10-05 09:07:01 +0200
commit6d24cd7d7ce276681d43bf19b2e890c06301a636 (patch)
tree05d35dcc5515f0bb276f897d10716da05e8000d4
parent21e8df4493f30624e0691ce482c44eef39f494ce (diff)
LpfStop: drop name
This is stored in the parent LpfLoc already.
-rw-r--r--libplanfahr/lpf-stop.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libplanfahr/lpf-stop.c b/libplanfahr/lpf-stop.c
index 3c733bc..79216c9 100644
--- a/libplanfahr/lpf-stop.c
+++ b/libplanfahr/lpf-stop.c
@@ -57,7 +57,6 @@ G_DEFINE_TYPE (LpfStop, lpf_stop, LPF_TYPE_LOC)
typedef struct _LpfStopPrivate LpfStopPrivate;
struct _LpfStopPrivate {
- gchar *name;
/* Planned */
GDateTime *arr, *dep;
gchar *arr_plat, *dep_plat;
@@ -200,7 +199,6 @@ lpf_stop_finalize (GObject *object)
g_date_time_unref (priv->dep);
if (priv->arr)
g_date_time_unref (priv->arr);
- g_free (priv->name);
g_free (priv->arr_plat);
g_free (priv->dep_plat);
if (priv->rt_dep)