Ignore:
Timestamp:
Nov 14, 2008, 5:28:23 PM (16 years ago)
Author:
garnier
Message:

renaming. See History

Location:
trunk/source/interfaces
Files:
1 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/interfaces/History

    r876 r883  
    1 $Id: History,v 1.103 2008/11/06 10:06:33 lgarnier Exp $
     1$Id: History,v 1.104 2008/11/14 16:21:42 lgarnier Exp $
    22-------------------------------------------------------------------
    33
     
    1818     ----------------------------------------------------------
    1919
     2014 November, Laurent Garnier
     21 - G4UIXm,G4Win32 : Renaming according to Geant4 code policy
     22
    20236 November, Laurent Garnier
    2124 - G4Qt : Re-fix problem on some linux with QApplication, should be better
  • trunk/source/interfaces/basic/include/G4UIXm.hh

    r850 r883  
    2525//
    2626//
    27 // $Id: G4UIXm.hh,v 1.13 2006/06/29 19:09:33 gunter Exp $
    28 // GEANT4 tag $Name: HEAD $
     27// $Id: G4UIXm.hh,v 1.14 2008/11/14 16:21:42 lgarnier Exp $
     28// GEANT4 tag $Name: $
    2929//
    3030#ifndef G4UIXm_h
     
    9494  Widget form,shell,command,menuBar,text;
    9595  std::map<Widget,G4String, std::less<Widget> > commands;
    96   static void commandEnteredCallback(Widget,XtPointer,XtPointer);
     96  static void CommandEnteredCallback(Widget,XtPointer,XtPointer);
    9797  static void keyHandler(Widget,XtPointer,XEvent*,Boolean*);
    9898  G4bool fHelp;
  • trunk/source/interfaces/basic/src/G4UIXm.cc

    r876 r883  
    2525//
    2626//
    27 // $Id: G4UIXm.cc,v 1.14 2006/06/29 19:09:49 gunter Exp $
     27// $Id: G4UIXm.cc,v 1.15 2008/11/14 16:21:42 lgarnier Exp $
    2828// GEANT4 tag $Name:  $
    2929//
     
    153153                clearButtonCallback,(XtPointer)text);
    154154  XtAddCallback(command,XmNcommandEnteredCallback,
    155                 commandEnteredCallback,(XtPointer)this);
     155                CommandEnteredCallback,(XtPointer)this);
    156156
    157157  Widget commandText = XmCommandGetChild(command,XmDIALOG_COMMAND_TEXT);
     
    357357/***************************************************************************/
    358358/***************************************************************************/
    359 void G4UIXm::commandEnteredCallback (
     359void G4UIXm::CommandEnteredCallback (
    360360 Widget    a_widget
    361361,XtPointer a_tag
  • trunk/source/interfaces/common/include/G4Win32.hh

    r850 r883  
    2525//
    2626//
    27 // $Id: G4Win32.hh,v 1.8 2006/06/29 19:10:11 gunter Exp $
    28 // GEANT4 tag $Name: HEAD $
     27// $Id: G4Win32.hh,v 1.9 2008/11/14 16:21:42 lgarnier Exp $
     28// GEANT4 tag $Name: $
    2929//
    3030//  To unify Windows message treatment between
     
    5757  void*            GetEvent              ();
    5858  void             FlushAndWaitExecution ();
    59   static G4bool    dispatchWin32Event    (void*);
     59  static G4bool    DispatchWin32Event    (void*);
    6060  virtual         ~G4Win32               ();                     
    6161private:
  • trunk/source/interfaces/common/src/G4Win32.cc

    r850 r883  
    2525//
    2626//
    27 // $Id: G4Win32.cc,v 1.9 2006/06/29 19:10:26 gunter Exp $
    28 // GEANT4 tag $Name: HEAD $
     27// $Id: G4Win32.cc,v 1.10 2008/11/14 16:21:42 lgarnier Exp $
     28// GEANT4 tag $Name: $
    2929//
    3030// G.Barrand
     
    8989  }
    9090
    91   AddDispatcher((G4DispatchFunction)G4Win32::dispatchWin32Event);
     91  AddDispatcher((G4DispatchFunction)G4Win32::DispatchWin32Event);
    9292  SetMainInteractor(topWindow);
    9393}
     
    134134}
    135135/***************************************************************************/
    136 G4bool G4Win32::dispatchWin32Event  (
     136G4bool G4Win32::DispatchWin32Event  (
    137137 void* a_event
    138138)
Note: See TracChangeset for help on using the changeset viewer.