Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/b50743a2538b95c172999...
...commit
http://git.netsurf-browser.org/netsurf.git/commit/b50743a2538b95c17299979...
...tree
http://git.netsurf-browser.org/netsurf.git/tree/b50743a2538b95c172999796d...
The branch, master has been updated
via b50743a2538b95c172999796d9b6ebae0538673c (commit)
from 0f166ad6b06d180e5f9eebfb4e49d596eb6400e5 (commit)
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 -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/netsurf.git/commit/?id=b50743a2538b95c1729...
commit b50743a2538b95c172999796d9b6ebae0538673c
Author: Chris Young <chris(a)unsatisfactorysoftware.co.uk>
Commit: Chris Young <chris(a)unsatisfactorysoftware.co.uk>
tidy-up
diff --git a/amiga/gui.c b/amiga/gui.c
index e82c134..5c7acf1 100644
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -2491,12 +2491,8 @@ void ami_handle_applib(void)
{
struct ApplicationCustomMsg *applibcustmsg =
(struct ApplicationCustomMsg *)applibmsg;
- // STRPTR tempmsg;
- // if(tempmsg = ASPrintf("\"%s\"",applibcustmsg->customMsg))
- // {
- OpenWorkbenchObjectA(applibcustmsg->customMsg, NULL);
- // FreeVec(tempmsg);
- // }
+ LOG(("Ringhio BackMsg received: %s", applibcustmsg->customMsg));
+ OpenWorkbenchObjectA(applibcustmsg->customMsg, NULL);
}
break;
}
-----------------------------------------------------------------------
Summary of changes:
amiga/gui.c | 8 ++------
1 files changed, 2 insertions(+), 6 deletions(-)
diff --git a/amiga/gui.c b/amiga/gui.c
index e82c134..5c7acf1 100644
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -2491,12 +2491,8 @@ void ami_handle_applib(void)
{
struct ApplicationCustomMsg *applibcustmsg =
(struct ApplicationCustomMsg *)applibmsg;
- // STRPTR tempmsg;
- // if(tempmsg = ASPrintf("\"%s\"",applibcustmsg->customMsg))
- // {
- OpenWorkbenchObjectA(applibcustmsg->customMsg, NULL);
- // FreeVec(tempmsg);
- // }
+ LOG(("Ringhio BackMsg received: %s", applibcustmsg->customMsg));
+ OpenWorkbenchObjectA(applibcustmsg->customMsg, NULL);
}
break;
}
--
NetSurf Browser