mirror of
https://github.com/transmission/transmission
synced 2025-01-31 03:12:44 +00:00
don't use a '-' character in the QN argument to G_DEFINE_QUARK. https://forum.transmissionbt.com/viewtopic.php?p=65548#p65548
This commit is contained in:
parent
db6fd6630d
commit
6a47b4a5d3
3 changed files with 3 additions and 3 deletions
|
@ -21,7 +21,7 @@
|
|||
#include "tr-icon.h"
|
||||
#include "util.h"
|
||||
|
||||
static G_DEFINE_QUARK (tr-core, core)
|
||||
static G_DEFINE_QUARK (tr_core, core)
|
||||
|
||||
#define ICON_NAME "transmission"
|
||||
|
||||
|
|
|
@ -66,7 +66,7 @@ typedef struct
|
|||
}
|
||||
PrivateData;
|
||||
|
||||
static G_DEFINE_QUARK (private-data, private_data)
|
||||
static G_DEFINE_QUARK (private_data, private_data)
|
||||
|
||||
static PrivateData*
|
||||
get_private_data (GtkWindow * w)
|
||||
|
|
|
@ -664,7 +664,7 @@ freespace_label_data_free (gpointer gdata)
|
|||
g_free (data);
|
||||
}
|
||||
|
||||
static G_DEFINE_QUARK (freespace-label-data, freespace_label_data)
|
||||
static G_DEFINE_QUARK (freespace_label_data, freespace_label_data)
|
||||
|
||||
static void
|
||||
on_freespace_label_core_destroyed (gpointer gdata, GObject * dead_core G_GNUC_UNUSED)
|
||||
|
|
Loading…
Reference in a new issue