This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project wmaker-crm.git.
The branch, next has been updated
discards 39014261aea802dc8f63cf1429450b3f3b636e78 (commit)
discards da04d8f58d42ad21dda63dfa23961037e28283b4 (commit)
discards caf4ede6b456ff680cfe0d9632bbe885e5969122 (commit)
via 1a8316d4c9b7ec60fcb41443f680ffe46d586a9a (commit)
via 52b8aabcccadc19d295ad8bc2e262c5ad5407089 (commit)
via 05a3eadd653849fada63a5f87bcf4c4f46c64302 (commit)
This update added new revisions after undoing existing revisions. That is
to say, the old revision is not a strict subset of the new revision. This
situation occurs when you --force push a change and generate a repository
containing something like this:
* -- * -- B -- O -- O -- O (39014261aea802dc8f63cf1429450b3f3b636e78)
N -- N -- N (1a8316d4c9b7ec60fcb41443f680ffe46d586a9a)
When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://repo.or.cz/w/wmaker-crm.git/commit/1a8316d4c9b7ec60fcb41443f680ffe46d586a9a
commit 1a8316d4c9b7ec60fcb41443f680ffe46d586a9a
Author: Christophe CURIS <[email protected]>
Date: Thu May 9 18:27:09 2013 +0200
WINGs: Updated NEWS file about the API changes in the libraries
diff --git a/WINGs/NEWS b/WINGs/NEWS
index 76e417f..d1bfa7b 100644
--- a/WINGs/NEWS
+++ b/WINGs/NEWS
@@ -155,6 +155,23 @@ wshellquote ADDED
----------------------------------------------------
+*** Thu May 9 18:24:03 CEST 2013 - Christophe
+
+Const-correctness API changes for WRaster, WUtils and WINGs
+-----------------------------------------------------------
+
+The 3 libraries have been modified to include appropriate 'const' qualifier
+to the function parameters that are treated as such. This should provide
+some hints to the compiler for better optimisation.
+This change should have no impact on the binary interface, and will not
+impact existing source code.
+
+There is one exception however:
+ WUtil: wusergnusteppath()
+This function now returns 'const char *' because its result must *not* be
+modified, so it may generate a const related warning in old code.
+
+
*** Mon Oct 14 19:42:42 EEST 2002 - Dan
Double buffering
http://repo.or.cz/w/wmaker-crm.git/commit/52b8aabcccadc19d295ad8bc2e262c5ad5407089
commit 52b8aabcccadc19d295ad8bc2e262c5ad5407089
Author: Christophe CURIS <[email protected]>
Date: Thu May 9 17:34:13 2013 +0200
WINGs: Fixed incorrect return type for internal function
The function did return a boolean actually as would be expectable
from such function, but its prototype did not use the proper type.
diff --git a/WINGs/wfilepanel.c b/WINGs/wfilepanel.c
index 9e8fdff..3eb04f8 100644
--- a/WINGs/wfilepanel.c
+++ b/WINGs/wfilepanel.c
@@ -475,7 +475,7 @@ static char *get_name_from_path(const char *path)
return wstrdup(&(path[size]));
}
-static int filterFileName(WMFilePanel * panel, const char *file, Bool
isDirectory)
+static Bool filterFileName(WMFilePanel * panel, const char *file, Bool
isDirectory)
{
return True;
}
http://repo.or.cz/w/wmaker-crm.git/commit/05a3eadd653849fada63a5f87bcf4c4f46c64302
commit 05a3eadd653849fada63a5f87bcf4c4f46c64302
Author: Christophe CURIS <[email protected]>
Date: Thu May 9 17:34:12 2013 +0200
WINGs: Fixed incorrect allocation size, missing room for '0'
diff --git a/WINGs/wfilepanel.c b/WINGs/wfilepanel.c
index 372683f..9e8fdff 100644
--- a/WINGs/wfilepanel.c
+++ b/WINGs/wfilepanel.c
@@ -589,7 +589,7 @@ static void showError(WMScreen * scr, WMWindow * owner,
const char *s, const cha
char *errStr;
if (file) {
- errStr = wmalloc(strlen(file) + strlen(s));
+ errStr = wmalloc(strlen(file) + strlen(s) + 1);
sprintf(errStr, s, file);
} else {
errStr = wstrdup(s);
-----------------------------------------------------------------------
Summary of changes:
NEWS | 15 ---------------
WINGs/NEWS | 17 +++++++++++++++++
2 files changed, 17 insertions(+), 15 deletions(-)
repo.or.cz automatic notification. Contact project admin [email protected]
if you want to unsubscribe, or site admin [email protected] if you receive
no reply.
--
wmaker-crm.git ("The Window Maker window manager")
--
To unsubscribe, send mail to [email protected].