[gnome-builder/wip/gtk4-port: 1182/1774] libide/projects: better defaults for property bindings
- From: Christian Hergert <chergert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-builder/wip/gtk4-port: 1182/1774] libide/projects: better defaults for property bindings
- Date: Mon, 11 Jul 2022 22:31:37 +0000 (UTC)
commit 3a15f8fc46d23fee8b70fa74a03b8e7da108d604
Author: Christian Hergert <chergert redhat com>
Date: Thu May 26 16:20:19 2022 -0700
libide/projects: better defaults for property bindings
src/libide/projects/ide-template-input.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/libide/projects/ide-template-input.c b/src/libide/projects/ide-template-input.c
index 64d3baedf..f996496b6 100644
--- a/src/libide/projects/ide-template-input.c
+++ b/src/libide/projects/ide-template-input.c
@@ -28,7 +28,6 @@
#define DEFAULT_USE_VERSION_CONTROL TRUE
#define DEFAULT_PROJECT_VERSION "0.1.0"
#define DEFAULT_LANGUAGE "C"
-#define DEFAULT_APP_ID "org.example.App"
#define DEFAULT_LICECNSE_NAME "gpl_3"
struct _IdeTemplateInput
@@ -208,11 +207,11 @@ ide_template_input_class_init (IdeTemplateInputClass *klass)
(G_PARAM_READWRITE | G_PARAM_EXPLICIT_NOTIFY | G_PARAM_STATIC_STRINGS));
properties [PROP_NAME] =
- g_param_spec_string ("name", NULL, NULL, NULL,
+ g_param_spec_string ("name", NULL, NULL, "",
(G_PARAM_READWRITE | G_PARAM_EXPLICIT_NOTIFY | G_PARAM_STATIC_STRINGS));
properties [PROP_APP_ID] =
- g_param_spec_string ("app-id", NULL, NULL, DEFAULT_APP_ID,
+ g_param_spec_string ("app-id", NULL, NULL, "",
(G_PARAM_READWRITE | G_PARAM_EXPLICIT_NOTIFY | G_PARAM_STATIC_STRINGS));
properties [PROP_PROJECT_VERSION] =
@@ -237,9 +236,10 @@ ide_template_input_class_init (IdeTemplateInputClass *klass)
static void
ide_template_input_init (IdeTemplateInput *self)
{
+ self->name = g_strdup ("");
self->directory = g_file_new_for_path (ide_get_projects_dir ());
self->author = g_strdup (g_get_real_name ());
- self->app_id = g_strdup (DEFAULT_APP_ID);
+ self->app_id = g_strdup ("");
self->language = g_strdup (DEFAULT_LANGUAGE);
self->license_name = g_strdup (DEFAULT_LICECNSE_NAME);
self->project_version = g_strdup (DEFAULT_PROJECT_VERSION);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]