Remove trailing whitespace

This commit is contained in:
Doug Torrance 2018-06-22 16:21:04 -04:00 committed by Carlos R. Mafra
parent 988a0c0f20
commit c4f5c4dedf
5 changed files with 17 additions and 17 deletions

View file

@ -1,9 +1,9 @@
2018-04-04 Panagiotis A. Dimopoulos <panosdim@gmail.com> 2018-04-04 Panagiotis A. Dimopoulos <panosdim@gmail.com>
- Release 1.2 - Release 1.2
- Fix a bug when left click is not working in some cases - Fix a bug when left click is not working in some cases
- Fix a bug leaving zombie process when checking for new updates - Fix a bug leaving zombie process when checking for new updates
2018-04-02 Panagiotis A. Dimopoulos <panosdim@gmail.com> 2018-04-02 Panagiotis A. Dimopoulos <panosdim@gmail.com>
- Release 1.1 - Release 1.1
@ -12,7 +12,7 @@
- Left click will open an xterm and start system update - Left click will open an xterm and start system update
- You can now define that check interval with -c or --check-interval - You can now define that check interval with -c or --check-interval
command line arguments command line arguments
2018-03-29 Panagiotis A. Dimopoulos <panosdim@gmail.com> 2018-03-29 Panagiotis A. Dimopoulos <panosdim@gmail.com>
- Initial Release 1.0 - Initial Release 1.0

View file

@ -1,9 +1,9 @@
_____ .__ ____ ___ _____ .__ ____ ___
__ _ _______ / _ \_______ ____ | |__ | | \______ __ _ _______ / _ \_______ ____ | |__ | | \______
\ \/ \/ / \ / /_\ \_ __ \_/ ___\| | \| | /\____ \ \ \/ \/ / \ / /_\ \_ __ \_/ ___\| | \| | /\____ \
\ / Y Y \/ | \ | \/\ \___| Y \ | / | |_> > \ / Y Y \/ | \ | \/\ \___| Y \ | / | |_> >
\/\_/|__|_| /\____|__ /__| \___ >___| /______/ | __/ \/\_/|__|_| /\____|__ /__| \___ >___| /______/ | __/
\/ \/ \/ \/ |__| \/ \/ \/ \/ |__|
******************* *******************
*** DESCRIPTION *** *** DESCRIPTION ***
@ -18,8 +18,8 @@ This dockapp is quite simple. It contains an Arch Linux logo icon. When there is
not package updates then the Arch Linux logo icon is greyed. When there are not package updates then the Arch Linux logo icon is greyed. When there are
package updates then the Arch Linux logo icon is blue. The program check for package updates then the Arch Linux logo icon is blue. The program check for
updates every 10 minutes by default. However you can specify the checking updates every 10 minutes by default. However you can specify the checking
interval by using the -c or --check-interval command line arguments. When the interval by using the -c or --check-interval command line arguments. When the
program checks for updates it change its icon in a gear. If you right click the program checks for updates it change its icon in a gear. If you right click the
Arch Linux logo icon then it immediately starts a check for updates. If you left Arch Linux logo icon then it immediately starts a check for updates. If you left
click the Arch Linux log the it opens an xterm window and start a system update. click the Arch Linux log the it opens an xterm window and start a system update.

View file

@ -286,7 +286,7 @@ menu_app_item_click(GtkWidget *menuitem, gpointer data)
} }
history_free(); history_free();
rcconfig_free(); rcconfig_free();
gtk_main_quit(); gtk_main_quit();
exit(0); exit(0);
return_val(TRUE); return_val(TRUE);

View file

@ -162,7 +162,7 @@ main(int argc, char **argv)
/* creat dock icon */ /* creat dock icon */
dock_app = main_window; dock_app = main_window;
/* add event box to main window*/ /* add event box to main window*/
event = gtk_event_box_new(); event = gtk_event_box_new();
gtk_container_add(GTK_CONTAINER(dock_app), event); gtk_container_add(GTK_CONTAINER(dock_app), event);
@ -398,7 +398,7 @@ main(int argc, char **argv)
"event", "event",
G_CALLBACK(button_press), G_CALLBACK(button_press),
NULL); NULL);
g_signal_connect(G_OBJECT(dock_app), g_signal_connect(G_OBJECT(dock_app),
"destroy", "destroy",
G_CALLBACK(wmcliphist_exit), G_CALLBACK(wmcliphist_exit),

View file

@ -123,7 +123,7 @@ static DAProgramOption options[] = {
{"-r", "--run", "Run xmms on startup", DONone, False, {NULL} }, {"-r", "--run", "Run xmms on startup", DONone, False, {NULL} },
{"-V", "--volume", "Stepping of the wheel volume control (in percent)", {"-V", "--volume", "Stepping of the wheel volume control (in percent)",
DONatural, False, {&volume_step} }, DONatural, False, {&volume_step} },
{"-a", "--rotate-arrow", "Do not rotate the arrow, when paused", {"-a", "--rotate-arrow", "Do not rotate the arrow, when paused",
DONone, False, {NULL} }, DONone, False, {NULL} },
{"-l", "--time-left", "Show time left instead of time remaining by default", {"-l", "--time-left", "Show time left instead of time remaining by default",
DONone, False, {NULL} }, DONone, False, {NULL} },
@ -452,7 +452,7 @@ void buttonRelease(int button, int state, int x, int y)
} }
} }
void buttonDrag(int x, int y) void buttonDrag(int x, int y)
{ {
motion_event=1; motion_event=1;
if (left_pressed==1) { if (left_pressed==1) {
@ -577,7 +577,7 @@ void DrawPos (int pos)
if (pos > 99) pos=0; if (pos > 99) pos=0;
sprintf(posstr, "%02d", pos); sprintf(posstr, "%02d", pos);
for (;i<3; i++) for (;i<3; i++)
{ {
copyNumArea((*p-'0')*6 + 1, 1, 6, 7, (i*6)+39, 7); copyNumArea((*p-'0')*6 + 1, 1, 6, 7, (i*6)+39, 7);