summaryrefslogtreecommitdiff
path: root/riscos/help.c
diff options
context:
space:
mode:
authorJohn Tytgat <joty@netsurf-browser.org>2008-07-26 22:29:15 +0000
committerJohn Tytgat <joty@netsurf-browser.org>2008-07-26 22:29:15 +0000
commit5f6c2cbff7cd778b6487943d62e71ff9e7b04893 (patch)
tree2755ac7fd68397c47142e4ba030b8212e16862b2 /riscos/help.c
parentaae686d90a3741293c6b3f2d15c7e2976b72adb9 (diff)
downloadnetsurf-5f6c2cbff7cd778b6487943d62e71ff9e7b04893.tar.gz
netsurf-5f6c2cbff7cd778b6487943d62e71ff9e7b04893.tar.bz2
- Compiler warning squash
- Changed a lineending \n\r -> \n for a couple of files. - More code style conformance. svn path=/trunk/netsurf/; revision=4762
Diffstat (limited to 'riscos/help.c')
-rw-r--r--riscos/help.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/riscos/help.c b/riscos/help.c
index fb0aa97de..463cb0d70 100644
--- a/riscos/help.c
+++ b/riscos/help.c
@@ -86,7 +86,8 @@ static os_t help_time = 0;
*
* \param message the request message
*/
-void ro_gui_interactive_help_request(wimp_message *message) {
+void ro_gui_interactive_help_request(wimp_message *message)
+{
char message_token[32];
char menu_buffer[4];
wimp_selection menu_tree;
@@ -209,7 +210,8 @@ void ro_gui_interactive_help_request(wimp_message *message) {
* \param token the token to look up
*/
static void ro_gui_interactive_help_broadcast(wimp_message *message,
- char *token) {
+ char *token)
+{
const char *translated_token;
help_full_message_reply *reply;
char *base_token;
@@ -277,7 +279,8 @@ static void ro_gui_interactive_help_broadcast(wimp_message *message,
*
* \return non-zero if interactive help is available, or 0 if not available
*/
-bool ro_gui_interactive_help_available(void) {
+bool ro_gui_interactive_help_available(void)
+{
taskmanager_task task;
int context = 0;
os_t time;
@@ -316,7 +319,8 @@ bool ro_gui_interactive_help_available(void) {
/**
* Launches interactive help.
*/
-void ro_gui_interactive_help_start(void) {
+void ro_gui_interactive_help_start(void)
+{
char *help_start;
wimp_t task = 0;
os_error *error;