~ubuntu-branches/ubuntu/oneiric/irssi/oneiric

« back to all changes in this revision

Viewing changes to src/perl/textui/TextUI.xs

  • Committer: Bazaar Package Importer
  • Author(s): Emilio Pozuelo Monfort
  • Date: 2007-11-02 18:13:28 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20071102181328-vg4v2tuqeviu16g9
Tags: 0.8.12-2ubuntu1
* Merge with Debian, remaining Ubuntu changes:
  - Added debian/patches/90irc-ubuntu-com.dpatch (Launchpad #52690).
  - Modify Maintainer value to match the DebianMaintainerField spec.
  - debian/irssi.prerm: Do not alternative. LP: #67698.

Show diffs side-by-side

added added

removed removed

Lines of Context:
117
117
        int ypos
118
118
        char *str
119
119
 
 
120
void
 
121
gui_input_set(str)
 
122
        char *str
 
123
CODE:
 
124
        gui_entry_set_text(active_entry, str);
 
125
 
 
126
int
 
127
gui_input_get_pos()
 
128
CODE:
 
129
        RETVAL = gui_entry_get_pos(active_entry);
 
130
OUTPUT:
 
131
        RETVAL
 
132
 
 
133
void
 
134
gui_input_set_pos(pos)
 
135
        int pos
 
136
CODE:
 
137
        gui_entry_set_pos(active_entry, pos);
 
138
 
120
139
MODULE = Irssi::TextUI PACKAGE = Irssi::UI::Window
121
140
 
122
141
void