[gnome-builder/wip/libide] libide: move variables to proper scope
- From: Christian Hergert <chergert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-builder/wip/libide] libide: move variables to proper scope
- Date: Sun, 15 Feb 2015 03:51:16 +0000 (UTC)
commit 41b1f498cdaf13a54fd01998e9b0c748aa19937d
Author: Christian Hergert <christian hergert me>
Date: Sat Feb 14 19:49:27 2015 -0800
libide: move variables to proper scope
libide/ide-project.c | 10 ++++++----
1 files changed, 6 insertions(+), 4 deletions(-)
---
diff --git a/libide/ide-project.c b/libide/ide-project.c
index 7dbe469..f5f3e62 100644
--- a/libide/ide-project.c
+++ b/libide/ide-project.c
@@ -180,11 +180,7 @@ ide_project_get_file_for_path (IdeProject *self,
IdeProjectItem *root;
GSequenceIter *iter;
GSequence *children;
- IdeContext *context;
- IdeVcs *vcs;
- GFile *workdir;
IdeFile *file;
- g_autoptr(GFile) gfile = NULL;
g_return_val_if_fail (IDE_IS_PROJECT (self), NULL);
g_return_val_if_fail (path, NULL);
@@ -215,12 +211,18 @@ ide_project_get_file_for_path (IdeProject *self,
if (!file)
{
+ IdeContext *context;
+ IdeVcs *vcs;
+ GFile *workdir;
+ g_autoptr(GFile) gfile = NULL;
+
/*
* Okay, we couldn't find an existing item that matches this path, so let's
* synthesize one (but not add it to the tree). This could be hit in common
* cases like new files that are not yet added to the project.
*/
context = ide_object_get_context (IDE_OBJECT (self));
+ g_assert (IDE_IS_CONTEXT (context));
vcs = ide_context_get_vcs (context);
workdir = ide_vcs_get_working_directory (vcs);
gfile = g_file_get_child (workdir, path);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]