changed the refresh hotkey
[giggle.git] / libgiggle / giggle-remote-ref.c
blob8bdba459aa57fd823f25dee59c6349e2ee12f3e7
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3 * Copyright (C) 2007 Imendio AB
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; either version 2 of the
8 * License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public
16 * License along with this program; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
21 #include <config.h>
22 #include <gtk/gtk.h>
24 #include "giggle-remote-ref.h"
25 #include "giggle-revision.h"
26 #include "giggle-ref.h"
28 G_DEFINE_TYPE (GiggleRemoteRef, giggle_remote_ref, GIGGLE_TYPE_REF)
31 static void
32 giggle_remote_ref_class_init (GiggleRemoteRefClass *class)
36 static void
37 giggle_remote_ref_init (GiggleRemoteRef *ref)
41 GiggleRef *
42 giggle_remote_ref_new (const gchar *name)
44 return g_object_new (GIGGLE_TYPE_REMOTE_REF,
45 "name", name,
46 NULL);