aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/uzbl-core.h
diff options
context:
space:
mode:
authorGravatar Brendan Taylor <whateley@gmail.com>2011-09-13 08:51:43 +0000
committerGravatar Brendan Taylor <whateley@gmail.com>2011-09-13 08:51:43 +0000
commit6f8078781480ba1f08a9dcf9b6630b8f78641507 (patch)
tree148240c05f6184cc8ce34d007dcad477ecad98b6 /src/uzbl-core.h
parentd9d2cf8190c0f5ac9ed5f009c8ef6b52f78912a7 (diff)
use process id as the default instance name
we were using the X window id, but this won't be unique if you have several displays on the same machine, and it doesn't exist if you're in plug mode.
Diffstat (limited to 'src/uzbl-core.h')
-rw-r--r--src/uzbl-core.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/uzbl-core.h b/src/uzbl-core.h
index 9aba992..b5afa3a 100644
--- a/src/uzbl-core.h
+++ b/src/uzbl-core.h
@@ -207,6 +207,8 @@ typedef struct {
int webkit_micro;
gchar* arch;
gchar* commit;
+
+ pid_t pid;
gchar* pid_str;
} Info;
@@ -219,8 +221,6 @@ typedef struct {
Behaviour behave;
Communication comm;
Info info;
-
- Window xwin;
} UzblCore;
extern UzblCore uzbl; /* Main Uzbl object */