Changeset 4df918b
- Timestamp:
- Sep 3, 2009, 6:03:37 PM (14 years ago)
- Branches:
- master, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 0b2afba
- Parents:
- 65a9870
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
perl/lib/BarnOwl.pm
r0b5168d r4df918b 16 16 new_command 17 17 new_variable_int new_variable_bool new_variable_string 18 quote );18 quote redisplay); 19 19 our %EXPORT_TAGS = (all => \@EXPORT_OK); 20 20 … … 170 170 which accepts a C<BarnOwl::Message> object and returns a string that 171 171 is the result of formatting the message for display. 172 173 =head2 redisplay 174 175 Redraw all of the messages on screen. This is useful if you've just 176 changed how a style renders messages. 172 177 173 178 =cut -
perlglue.xs
rd1b1cf6 r4df918b 411 411 owl_list_free_all(&l, owl_free); 412 412 413 void 414 redisplay() 415 CODE: 416 { 417 owl_messagelist_invalidate_formats(owl_global_get_msglist(&g)); 418 owl_function_calculate_topmsg(OWL_DIRECTION_DOWNWARDS); 419 owl_mainwin_redisplay(owl_global_get_mainwin(&g)); 420 } 421 413 422 MODULE = BarnOwl PACKAGE = BarnOwl::Internal 414 423
Note: See TracChangeset
for help on using the changeset viewer.