Skip to content
Snippets Groups Projects
Commit 8be43ca3 authored by jgrg's avatar jgrg
Browse files

moved C comment from perl code zone to C zone in XS file

parent ccecbc3b
No related branches found
No related tags found
No related merge requests found
......@@ -65,15 +65,18 @@ client_response_name(...)
MODULE = X11::XRemote PACKAGE = X11::XRemote::Handle
/* parameter to zMapXRemoteNew() must be NULL because currently we don't
* know how to get the display pointer out of perl/tk so it must be NULL
* for now. If we find out then need to change zMapXRemoteNew() too. */
X11::XRemote::Handle
init_obj(class)
char *class
CODE:
{
{
X11__XRemote__Handle handle = g_new0(X11__XRemote__HandleStruct, 1);
/* parameter to zMapXRemoteNew() must be NULL because currently we don't
* know how to get the display pointer out of perl/tk so it must be NULL
* for now. If we find out then need to change zMapXRemoteNew() too. */
handle->handle = zMapXRemoteNew(NULL) ;
RETVAL = handle;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment