about summary refs log tree commit diff stats
path: root/src/status_bar.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-10-21 20:02:20 +0100
committerJames Booth <boothj5@gmail.com>2012-10-21 20:02:20 +0100
commit6bad38c2d50a033d8e8a19998cb062e01fe1aa72 (patch)
tree781461a7d79b6fce56f5ee7f0a012e814cf8771f /src/status_bar.c
parent382e961563eb9e4d31d3ad111a41569b7fa78fa6 (diff)
downloadprofani-tty-6bad38c2d50a033d8e8a19998cb062e01fe1aa72.tar.gz
Removed trailing whitespace from src and tests
Diffstat (limited to 'src/status_bar.c')
-rw-r--r--src/status_bar.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/status_bar.c b/src/status_bar.c
index d9ae4aee..8d79fe5d 100644
--- a/src/status_bar.c
+++ b/src/status_bar.c
@@ -1,8 +1,8 @@
-/* 
+/*
  * status_bar.c
  *
  * Copyright (C) 2012 James Booth <boothj5@gmail.com>
- * 
+ *
  * This file is part of Profanity.
  *
  * Profanity is free software: you can redistribute it and/or modify
@@ -86,7 +86,7 @@ status_bar_refresh(void)
 
     g_date_time_unref(now_time);
 }
-    
+
 void
 status_bar_resize(void)
 {
@@ -124,7 +124,7 @@ status_bar_inactive(const int win)
     int active_pos = 1 + ((win -1) * 3);
 
     int cols = getmaxx(stdscr);
- 
+
     mvwaddch(status_bar, 0, cols - 29 + active_pos, ' ');
     if (win == 9)
         mvwaddch(status_bar, 0, cols - 29 + active_pos + 1, ' ');
@@ -141,7 +141,7 @@ status_bar_active(const int win)
     int active_pos = 1 + ((win -1) * 3);
 
     int cols = getmaxx(stdscr);
- 
+
     wattron(status_bar, COLOUR_BAR_DRAW);
     if (win < 9)
         mvwprintw(status_bar, 0, cols - 29 + active_pos, "%d", win+1);
@@ -161,7 +161,7 @@ status_bar_new(const int win)
     int active_pos = 1 + ((win -1) * 3);
 
     int cols = getmaxx(stdscr);
- 
+
     wattron(status_bar, COLOUR_BAR_TEXT);
     wattron(status_bar, A_BLINK);
     if (win < 9)
@@ -187,7 +187,7 @@ status_bar_print_message(const char * const msg)
     if (message != NULL)
         free(message);
 
-    message = (char *) malloc((strlen(msg) + 1) * sizeof(char));    
+    message = (char *) malloc((strlen(msg) + 1) * sizeof(char));
     strcpy(message, msg);
     mvwprintw(status_bar, 0, 9, message);
 
@@ -201,7 +201,7 @@ status_bar_clear(void)
         free(message);
         message = NULL;
     }
-    
+
     int i;
     for (i = 0; i < 9; i++) {
         is_active[i] = FALSE;