[X2Go-Commits] [nx-libs] 64/108: Window.c: convert old-style function definitions to ANSI C89 style

git-admin at x2go.org git-admin at x2go.org
Fri Nov 9 20:35:48 CET 2018


This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository nx-libs.

commit e8c6a741866b00756747878bc796f99c1987faab
Author: Ulrich Sibiller <uli42 at gmx.de>
Date:   Thu Oct 25 17:18:38 2018 +0200

    Window.c: convert old-style function definitions to ANSI C89 style
---
 nx-X11/programs/Xserver/hw/nxagent/Window.c | 22 ++++++----------------
 1 file changed, 6 insertions(+), 16 deletions(-)

diff --git a/nx-X11/programs/Xserver/hw/nxagent/Window.c b/nx-X11/programs/Xserver/hw/nxagent/Window.c
index d25424d..5f9dc45 100644
--- a/nx-X11/programs/Xserver/hw/nxagent/Window.c
+++ b/nx-X11/programs/Xserver/hw/nxagent/Window.c
@@ -263,8 +263,7 @@ WindowPtr nxagentWindowPtr(Window window)
   return match.pWin;
 }
 
-Bool nxagentCreateWindow(pWin)
-     WindowPtr pWin;
+Bool nxagentCreateWindow(WindowPtr pWin)
 {
   unsigned long mask;
   XSetWindowAttributes attributes;
@@ -1568,9 +1567,7 @@ void nxagentConfigureWindow(WindowPtr pWin, unsigned int mask)
   }
 }
 
-void nxagentReparentWindow(pWin, pOldParent)
-     WindowPtr pWin;
-     WindowPtr pOldParent;
+void nxagentReparentWindow(WindowPtr pWin, WindowPtr pOldParent)
 {
   if (nxagentScreenTrap)
   {
@@ -1589,9 +1586,7 @@ void nxagentReparentWindow(pWin, pOldParent)
                               pWin->origin.y - wBorderWidth(pWin));
 }
 
-Bool nxagentChangeWindowAttributes(pWin, mask)
-     WindowPtr pWin;
-     unsigned long mask;
+Bool nxagentChangeWindowAttributes(WindowPtr pWin, unsigned long mask)
 {
   XSetWindowAttributes attributes;
 
@@ -1953,8 +1948,7 @@ Bool nxagentRealizeWindow(WindowPtr pWin)
   return True;
 }
 
-Bool nxagentUnrealizeWindow(pWin)
-    WindowPtr pWin;
+Bool nxagentUnrealizeWindow(WindowPtr pWin)
 {
   if (nxagentScreenTrap)
   {
@@ -2011,10 +2005,7 @@ void nxagentFrameBufferPaintWindow(WindowPtr pWin, RegionPtr pRegion, int what)
   }
 }
 
-void nxagentPaintWindowBackground(pWin, pRegion, what)
-     WindowPtr pWin;
-     RegionPtr pRegion;
-     int what;
+void nxagentPaintWindowBackground(WindowPtr pWin, RegionPtr pRegion, int what)
 {
   int i;
 
@@ -3428,8 +3419,7 @@ Bool nxagentIsIconic(WindowPtr pWin)
   }
 }
 
-void nxagentSetTopLevelEventMask(pWin)
-     WindowPtr pWin;
+void nxagentSetTopLevelEventMask(WindowPtr pWin)
 {
   unsigned long mask = CWEventMask;
   XSetWindowAttributes attributes;

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/nx-libs.git


More information about the x2go-commits mailing list