2002-12-30 Benoit Gr�goire <bock@step.polymtl.ca>

* src/import-export/hbci/druid-hbci-initial.c
	* src/import-export/hbci/gnc-hbci-utils.c:
	Fix a bunch of "warning: deprecated use of label at end of
	compound statement" in gcc3 in select statements (added
	semicolons after default: so that I don't break anything,
	but it should probably output an error instead).


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7743 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Benoit Grégoire 2002-12-31 01:06:23 +00:00
parent 5a72709243
commit 0fef080b65
3 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,11 @@
2002-12-30 Benoit Grégoire <bock@step.polymtl.ca>
* src/import-export/hbci/druid-hbci-initial.c
* src/import-export/hbci/gnc-hbci-utils.c:
Fix a bunch of "warning: deprecated use of label at end of
compound statement" in gcc3 in select statements (added
semicolons after default: so that I don't break anything,
but it should probably output an error instead).
2002-12-30 Christian Stimming <stimming@tuhh.de> 2002-12-30 Christian Stimming <stimming@tuhh.de>
* src/report/standard-reports/cash-flow.scm: Patch by Ed Warnicke * src/report/standard-reports/cash-flow.scm: Patch by Ed Warnicke

View File

@ -729,6 +729,7 @@ on_bankpage_back (GnomeDruidPage *gnomedruidpage,
GNOME_DRUID_PAGE (info->accountpage)); GNOME_DRUID_PAGE (info->accountpage));
return TRUE; return TRUE;
default: default:
;
} }
return FALSE; return FALSE;
} }
@ -832,6 +833,7 @@ on_userid_back (GnomeDruidPage *gnomedruidpage,
GNOME_DRUID_PAGE (info->accountpage)); GNOME_DRUID_PAGE (info->accountpage));
return TRUE; return TRUE;
default: default:
;
} }
return FALSE; return FALSE;
} }
@ -1004,6 +1006,7 @@ on_accountinfo_back (GnomeDruidPage *gnomedruidpage,
GNOME_DRUID_PAGE (info->filepage)); GNOME_DRUID_PAGE (info->filepage));
return TRUE; return TRUE;
default: default:
;
} }
return FALSE; return FALSE;
} }
@ -1075,6 +1078,7 @@ on_accountlist_back (GnomeDruidPage *gnomedruidpage,
GNOME_DRUID_PAGE (info->filepage)); GNOME_DRUID_PAGE (info->filepage));
return TRUE; return TRUE;
default: default:
;
} }
return FALSE; return FALSE;
} }

View File

@ -279,6 +279,7 @@ gnc_hbci_error_retry (GtkWidget *parent, HBCI_Error *error,
return FALSE; return FALSE;
default: default:
;
} }
return FALSE; return FALSE;