This isn't C++; variable declaration must be at the top of a block.

* src/gnome/dialog-scheduledxaction.c: Move variable declaration
	  to the top of the block.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@9876 57a11ea4-9604-0410-9ed3-97b8803252fd
zzzoldfeatures/cashutil
Derek Atkins 22 years ago
parent 2a3cef235e
commit 53824933a5

@ -1,3 +1,8 @@
2004-04-01 Derek Atkins <derek@ihtfp.com>
* src/gnome/dialog-scheduledxaction.c: Move variable declaration
to the top of the block.
2004-03-31 Derek Atkins <derek@ihtfp.com>
* configure.in: move m4/Makefile to its own line

@ -1057,11 +1057,12 @@ gnc_sxed_save_sx( SchedXactionEditorDialog *sxed )
{
FreqSpec *fs;
GDate gdate;
GString *str;
fs = xaccSchedXactionGetFreqSpec( sxed->sx );
gnc_frequency_save_state( sxed->gncfreq, fs, &gdate );
GString *str = g_string_new( "" );
str = g_string_new( "" );
xaccFreqSpecGetFreqStr( fs, str );
DEBUG( "fs: %s", str->str );

Loading…
Cancel
Save