- Timestamp:
- Jun 12, 2010, 3:29:01 PM (14 years ago)
- Branches:
- master, release-1.10, release-1.7, release-1.8, release-1.9
- Children:
- 1aa4cc4
- Parents:
- 044f19f
- git-author:
- David Benjamin <davidben@mit.edu> (06/12/10 01:53:25)
- git-committer:
- David Benjamin <davidben@mit.edu> (06/12/10 15:29:01)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
global.c
r044f19f rea7daa8 8 8 #include <time.h> 9 9 #include "owl.h" 10 #include "globalnotifier.h"11 10 12 11 #ifndef MAXHOSTNAMELEN … … 20 19 char hostname[MAXHOSTNAMELEN]; 21 20 char *cd; 22 g->gn = owl_global_notifier_new(g);23 21 24 22 g->malloced=0; … … 241 239 void owl_global_set_curmsg(owl_global *g, int i) { 242 240 g->curmsg=i; 243 g_object_notify(G_OBJECT(g->gn), "curmsg");244 241 /* we will reset the vertical offset from here */ 245 242 /* we might want to move this out to the functions later */ … … 340 337 void owl_global_set_rightshift(owl_global *g, int i) { 341 338 g->rightshift = i; 342 g_object_notify(G_OBJECT(g->gn), "rightshift");343 344 339 owl_mainwin_redisplay(owl_global_get_mainwin(g)); 345 340 } … … 563 558 void owl_global_set_curmsg_vert_offset(owl_global *g, int i) { 564 559 g->curmsg_vert_offset = i; 565 g_object_notify(G_OBJECT(g->gn), "curmsg-vert-offset");566 560 } 567 561
Note: See TracChangeset
for help on using the changeset viewer.