diff options
author | R. Imura <imura@FreeBSD.org> | 1999-11-26 20:42:06 +0000 |
---|---|---|
committer | R. Imura <imura@FreeBSD.org> | 1999-11-26 20:42:06 +0000 |
commit | 5141371f64f6af1eb9342cee00dbfb69af75e0de (patch) | |
tree | dd02e3be853b079cac942f1b1e44035ccca76e39 /x11-wm/xwmm/files/patch-ab | |
parent | Initial import of diffstat version 1.27. (diff) |
Initial import of xwmm-0.7.
It is a Window Manager Manager. :-)
Notes
Notes:
svn path=/head/; revision=23407
Diffstat (limited to 'x11-wm/xwmm/files/patch-ab')
-rw-r--r-- | x11-wm/xwmm/files/patch-ab | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/x11-wm/xwmm/files/patch-ab b/x11-wm/xwmm/files/patch-ab new file mode 100644 index 000000000000..3968050db0cd --- /dev/null +++ b/x11-wm/xwmm/files/patch-ab @@ -0,0 +1,20 @@ +--- WMMListBox.cpp.orig Fri Nov 26 20:58:19 1999 ++++ WMMListBox.cpp Fri Nov 26 21:03:11 1999 +@@ -356,7 +356,7 @@ + // interactive: create a new entry + entryForm form; + if ( form.exec() == QDialog::Accepted ) { +- char *pTitle = form.getTitleText(); ++ const char *pTitle = form.getTitleText(); + QString *commandLine = new QString( form.getCommandLineText() ); + bool isDefault = form.getDefault(); + //debug("newEntry(%s%s : %s)", isDefault?"*":"", pTitle, commandLine->data() ); +@@ -401,7 +401,7 @@ + form.setCommandLineText( commandLines.at( index )->data() ); + form.setDefault( (defaultIndex==index)?TRUE:FALSE ); + if ( form.exec() == QDialog::Accepted ) { +- char *pTitle = form.getTitleText(); ++ const char *pTitle = form.getTitleText(); + QString *commandLine = new QString( form.getCommandLineText() ); + bool isDefault = form.getDefault(); + //debug("reviseEntry(%s%s : %s)", isDefault?"*":"", pTitle, commandLine->data() ); |