User: kz Date: 2006/07/19 09:04:03 Modified: dba/dbaccess/source/ui/misc/WCopyTable.cxx
Log: INTEGRATION: CWS warningfixes02 (1.45.4); FILE MERGED 2006/06/30 11:53:09 sb 1.45.4.1: #i66577# Made the code compile (warning-free) on a unxlngi6.pro GCC 4.1.1 Linux box. File Changes: Directory: /dba/dbaccess/source/ui/misc/ ======================================== File [changed]: WCopyTable.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/misc/WCopyTable.cxx?r1=1.46&r2=1.47 Delta lines: +3 -3 ------------------- --- WCopyTable.cxx 10 Jul 2006 15:36:47 -0000 1.46 +++ WCopyTable.cxx 19 Jul 2006 16:04:00 -0000 1.47 @@ -273,7 +273,7 @@ { DBG_DTOR(OCopyTableWizard,NULL); TabPage *pPage=0; - while(pPage = GetPage(0)) + while((pPage = GetPage(0))) { RemovePage( pPage ); delete pPage; @@ -426,8 +426,8 @@ case WIZARD_DEF_DATA: case WIZARD_DEF: { - sal_Bool bOnFirstPage; - if ( bOnFirstPage = (GetCurLevel() == 0) ) + sal_Bool bOnFirstPage = GetCurLevel() == 0; + if ( bOnFirstPage ) { // we came from the first page so we have to clear // all column information already collected --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
