Diff for /rpl/modules/motif/motif.rplc between versions 1.3 and 1.4

version 1.3, 2017/07/05 13:53:40 version 1.4, 2017/07/10 07:25:24
Line 5 Line 5
 libraryName(motif);  libraryName(motif);
   
 exportExternalFunctions(  exportExternalFunctions(
           XSynchronize,
           XtAddCallback,
         XtAppExitMainLoop,          XtAppExitMainLoop,
         XtAppInitialize,          XtAppInitialize,
         XtAppMainLoop,          XtAppMainLoop,
         XtCreateWidget);          XtCreatePopupShell,
           XtCreateWidget,
           XtDestroyWidget,
           XtPopdown,
           XtPopup,
           XtRealizeWidget);
   
 declareSubroutine(onLoading)  declareSubroutine(onLoading)
     notice(stdout, "\nMotif library V2R1 for RPL/2 (C) 2017 BERTRAND Joel\n");      notice(stdout, "\nMotif library V2R1 for RPL/2 (C) 2017 BERTRAND Joel\n");
Line 56  declareSubroutine(onLoading) Line 63  declareSubroutine(onLoading)
     createVariable(XtGrabExclusive);      createVariable(XtGrabExclusive);
   
     createVariable(XmSTRING);      createVariable(XmSTRING);
   
       createListObject(callbacksList);
   
       setFalse(initializationDone);
 endSubroutine  endSubroutine
   
 declareSubroutine(onClosing)  declareSubroutine(onClosing)
     // Destruction des variables spécifiques      // Destruction des variables spécifiques
     declareObject(variable);      declareObject(variable);
   
       freeObject(callbacksList);
   
 #define purgeVariable(var) \  #define purgeVariable(var) \
         do { \          do { \
             createNameObject(variable); \              createNameObject(variable); \

Removed from v.1.3  
changed lines
  Added in v.1.4


CVSweb interface <joel.bertrand@systella.fr>