~ubuntu-branches/ubuntu/wily/newsbeuter/wily

« back to all changes in this revision

Viewing changes to src/pb_view.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Nico Golde
  • Date: 2011-02-01 23:41:47 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20110201234147-4tvfi4gabc262wn4
Tags: 2.4-1
* New upstream release.
* Bump standards version, no changes needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
179
179
                std::string downkey("** "); downkey.append(keys->getkey(OP_SK_DOWN, "podbeuter"));
180
180
                std::string pgupkey("** "); pgupkey.append(keys->getkey(OP_SK_PGUP, "podbeuter"));
181
181
                std::string pgdownkey("** "); pgdownkey.append(keys->getkey(OP_SK_PGDOWN, "podbeuter"));
 
182
                std::string homekey("** "); homekey.append(keys->getkey(OP_SK_HOME, "podbeuter"));
 
183
                std::string endkey("** "); endkey.append(keys->getkey(OP_SK_END, "podbeuter"));
182
184
 
183
185
                dllist_form.set("bind_up", upkey);
184
186
                dllist_form.set("bind_down", downkey);
185
187
                dllist_form.set("bind_page_up", pgupkey);
186
188
                dllist_form.set("bind_page_down", pgdownkey);
 
189
                dllist_form.set("bind_home", homekey);
 
190
                dllist_form.set("bind_end", endkey);
187
191
 
188
192
                help_form.set("bind_up", upkey);
189
193
                help_form.set("bind_down", downkey);
190
194
                help_form.set("bind_page_up", pgupkey);
191
195
                help_form.set("bind_page_down", pgdownkey);
 
196
                help_form.set("bind_home", homekey);
 
197
                help_form.set("bind_end", endkey);
192
198
 
193
199
        }
194
200
}