paragui-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[paragui-cvs] CVS: paragui/src/core pgapplication.cpp,1.2.4.13,1.2.4.14


From: Alexander Pipelka <address@hidden>
Subject: [paragui-cvs] CVS: paragui/src/core pgapplication.cpp,1.2.4.13,1.2.4.14 pglog.cpp,1.1.6.5,1.1.6.6
Date: Fri, 22 Nov 2002 12:58:45 -0500

Update of /cvsroot/paragui/paragui/src/core
In directory subversions:/tmp/cvs-serv6060/src/core

Modified Files:
      Tag: devel-1-0
        pgapplication.cpp pglog.cpp 
Log Message:
collected changes for 1.0.3



Index: pgapplication.cpp
===================================================================
RCS file: /cvsroot/paragui/paragui/src/core/pgapplication.cpp,v
retrieving revision 1.2.4.13
retrieving revision 1.2.4.14
diff -C2 -r1.2.4.13 -r1.2.4.14
*** pgapplication.cpp   1 Nov 2002 10:43:36 -0000       1.2.4.13
--- pgapplication.cpp   22 Nov 2002 17:58:43 -0000      1.2.4.14
***************
*** 76,81 ****
  */
  void PARAGUI_ShutDownCode() {
-       // shutdown log
-       PG_LogConsole::Done();
  
        // shutdown SDL
--- 76,79 ----
***************
*** 108,112 ****
                exit(-1);
        }
!       atexit(SDL_Quit);
        pGlobalApp = this;
        screen = NULL;
--- 106,110 ----
                exit(-1);
        }
! 
        pGlobalApp = this;
        screen = NULL;
***************
*** 125,128 ****
--- 123,129 ----
        Shutdown();
        
+       // shutdown log
+       PG_LogConsole::Done();
+       
        // remove all archives from PG_FileArchive
        PG_FileArchive::RemoveAllArchives();
***************
*** 274,278 ****
  
        if((key->keysym.sym == SDLK_ESCAPE) && emergencyQuit) {
- 
                Quit();
                return true;
--- 275,278 ----
***************
*** 678,684 ****
                }
  
!               PG_MessageObject* temp = *list;
!               //RemoveObject(*list);
!               delete temp;
  
                list = objectList.begin();
--- 678,682 ----
                }
  
!               delete *list;
  
                list = objectList.begin();

Index: pglog.cpp
===================================================================
RCS file: /cvsroot/paragui/paragui/src/core/pglog.cpp,v
retrieving revision 1.1.6.5
retrieving revision 1.1.6.6
diff -C2 -r1.1.6.5 -r1.1.6.6
*** pglog.cpp   1 Nov 2002 10:43:36 -0000       1.1.6.5
--- pglog.cpp   22 Nov 2002 17:58:43 -0000      1.1.6.6
***************
*** 46,50 ****
  static SDLKey PG_LogConsoleKey = SDLK_F12;
  
! struct PG_LogMessage_t {
        PG_LOG_LEVEL    Id;
        time_t  TimeStamp;
--- 46,51 ----
  static SDLKey PG_LogConsoleKey = SDLK_F12;
  
! class PG_LogMessage_t {
! public:
        PG_LOG_LEVEL    Id;
        time_t  TimeStamp;





reply via email to

[Prev in Thread] Current Thread [Next in Thread]