VirtualBox

Ignore:
Timestamp:
Sep 22, 2016 11:01:17 AM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
110828
Message:

OpenGL: fixed the most annoying coding style flaws, mainly removing spaces after '(' and before ')', no semantic change

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/common/crOpenGL/DD_glh.py

    r63939 r63942  
    125125
    126126    if func_name in commoncall_special:
    127         print("extern %s vboxDD_gl%s( %s );" % (return_type, func_name,
     127        print("extern %s vboxDD_gl%s(%s);" % (return_type, func_name,
    128128                                                apiutil.MakeDeclarationString( params )))
    129129    else:
    130130        if apiutil.MakeDeclarationString(params)=="void":
    131             print("extern %s vboxDD_gl%s( GLcontext *ctx );" % (return_type, func_name))
     131            print("extern %s vboxDD_gl%s(GLcontext *ctx);" % (return_type, func_name))
    132132        else:
    133             print("extern %s vboxDD_gl%s( GLcontext *ctx, %s );" % (return_type, func_name,
     133            print("extern %s vboxDD_gl%s(GLcontext *ctx, %s);" % (return_type, func_name,
    134134                                                                    apiutil.MakeDeclarationString( params )))
    135135
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette