Skip to content

Commit

Permalink
Remove newline in window title
Browse files Browse the repository at this point in the history
  • Loading branch information
niclas committed Jan 24, 2019
1 parent 5ade3f7 commit 32ea06e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ This release was tested against MarIuX.

## Revision History

### Version 3.0p11 - Jan 23 2019
- remove newline in window title
- Niclas Hofmann, `niclas@molgen.mpg.de`

### Version 3.0p10 - Jan 23 2019
- fix integer overflow
- Niclas Hofmann, `niclas@molgen.mpg.de`
Expand Down
2 changes: 1 addition & 1 deletion version.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define XDU_VERSION "3.0p10"
#define XDU_VERSION "3.0p11"
2 changes: 1 addition & 1 deletion xwin.c
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ int xsetup(int* argcp, char** argv)
* Create the top level Widget
*/
n = 0;
XtSetArg(args[n], XtNtitle, "XDU Disk Usage Display ('h' for help)\n");
XtSetArg(args[n], XtNtitle, "XDU Disk Usage Display ('h' for help)");
n++;
toplevel = XtAppInitialize(&app_con, "XDu", options, XtNumber(options), argcp,
argv, fallback_resources, args, n);
Expand Down

0 comments on commit 32ea06e

Please sign in to comment.