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

View File

@ -1,9 +1,9 @@
_____ .__ ____ ___
__ _ _______ / _ \_______ ____ | |__ | | \______
\ \/ \/ / \ / /_\ \_ __ \_/ ___\| | \| | /\____ \
\ / Y Y \/ | \ | \/\ \___| Y \ | / | |_> >
\/\_/|__|_| /\____|__ /__| \___ >___| /______/ | __/
\/ \/ \/ \/ |__|
_____ .__ ____ ___
__ _ _______ / _ \_______ ____ | |__ | | \______
\ \/ \/ / \ / /_\ \_ __ \_/ ___\| | \| | /\____ \
\ / Y Y \/ | \ | \/\ \___| Y \ | / | |_> >
\/\_/|__|_| /\____|__ /__| \___ >___| /______/ | __/
\/ \/ \/ \/ |__|
*******************
*** 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
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
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
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
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.

View File

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

View File

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

View File

@ -123,7 +123,7 @@ static DAProgramOption options[] = {
{"-r", "--run", "Run xmms on startup", DONone, False, {NULL} },
{"-V", "--volume", "Stepping of the wheel volume control (in percent)",
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} },
{"-l", "--time-left", "Show time left instead of time remaining by default",
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;
if (left_pressed==1) {
@ -577,7 +577,7 @@ void DrawPos (int pos)
if (pos > 99) pos=0;
sprintf(posstr, "%02d", pos);
for (;i<3; i++)
{
copyNumArea((*p-'0')*6 + 1, 1, 6, 7, (i*6)+39, 7);