mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Since-last-run dialog cleanups.
* gnc-sxed-window-ui.xml: Remove unreferenced `TransactionAction`. * dialog-sxsincelast.c (sxsld_disposition_changed): change the assertion into a simple return-if-fail due to apparent change in the calling order in gtk 2.x... git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@12256 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
9568565e7d
commit
4eab2eff34
@ -1,3 +1,11 @@
|
||||
2006-01-03 Joshua Sled <jsled@asynchronous.org>
|
||||
|
||||
* gnc-sxed-window-ui.xml: Remove unreferenced `TransactionAction`.
|
||||
|
||||
* dialog-sxsincelast.c (sxsld_disposition_changed): change the
|
||||
assertion into a simple return-if-fail due to apparent change in
|
||||
the calling order in gtk 2.x...
|
||||
|
||||
2006-01-03 David Hampton <hampton@employees.org>
|
||||
|
||||
* src/engine/Transaction.c: When setting the amount of a split,
|
||||
|
@ -124,6 +124,12 @@ Resources
|
||||
|
||||
- 2006-01-02: do these problems still exist?
|
||||
|
||||
- [jsled, 2006-01-03] yes...
|
||||
|
||||
- After opening, mousing over the existing account-tree changes all my
|
||||
'$'s to 'USD'.
|
||||
|
||||
- I'm unable to cancel this dialog.
|
||||
|
||||
- Account Hierarchy Merge - BROKEN
|
||||
|
||||
@ -150,7 +156,10 @@ Resources
|
||||
|
||||
- Scheduled Transactions
|
||||
|
||||
- Since Last Run dialog spews console-crap on init, generally broken?
|
||||
- Since Last Run dialog should be audited for menus and ledger capabilities.
|
||||
|
||||
- e.g. The To-Create-Transaction read-only review ledger doesn't need any
|
||||
menus or editing functionality.
|
||||
|
||||
- SX Editor
|
||||
|
||||
|
@ -531,7 +531,7 @@ dialog_widgets_attach_handlers(GladeXML *dialog_xml,
|
||||
int i;
|
||||
GtkWidget *w;
|
||||
|
||||
for(i = 0; handler_info[i].name != NULL; i++)
|
||||
for (i = 0; handler_info[i].name != NULL; i++)
|
||||
{
|
||||
w = glade_xml_get_widget(dialog_xml, handler_info[i].name);
|
||||
g_signal_connect( G_OBJECT(w), handler_info[i].signal,
|
||||
@ -3418,7 +3418,9 @@ sxsld_disposition_changed( GtkMenuShell *b, gpointer d )
|
||||
glade_xml_get_widget( sxsld->gxml,
|
||||
SX_DISPOSITION_OPT ));
|
||||
/* Change the state of the TCI */
|
||||
g_assert( sxsld->curSelTCI != NULL );
|
||||
//g_assert( sxsld->curSelTCI != NULL );
|
||||
g_return_if_fail(sxsld->curSelTCI != NULL);
|
||||
|
||||
sxsld->curSelTCI->state = newState;
|
||||
|
||||
newSensitivity = TRUE;
|
||||
|
@ -5997,7 +5997,7 @@ Select any which you would like to create now, and click
|
||||
<widget class="GtkStatusbar" id="to_create_status">
|
||||
<property name="border_width">3</property>
|
||||
<property name="visible">True</property>
|
||||
<property name="has_resize_grip">True</property>
|
||||
<property name="has_resize_grip">False</property>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="padding">0</property>
|
||||
|
@ -1,6 +1,6 @@
|
||||
<ui>
|
||||
<menubar>
|
||||
<menu name="Transaction" action="TransactionAction">
|
||||
<!-- menu name="Transaction" action="TransactionAction">
|
||||
<menuitem name="CutTransaction" action="CutTransactionAction"/>
|
||||
<menuitem name="CopyTransaction" action="CopyTransactionAction"/>
|
||||
<menuitem name="PasteTransaction" action="PasteTransactionAction"/>
|
||||
@ -8,7 +8,7 @@
|
||||
<menuitem name="VoidTransaction" action="VoidTransactionAction"/>
|
||||
<menuitem name="UnvoidTransaction" action="UnvoidTransactionAction"/>
|
||||
<menuitem name="ReverseTransaction" action="ReverseTransactionAction"/>
|
||||
</menu>
|
||||
</menu -->
|
||||
|
||||
<menu name="View" action="ViewAction">
|
||||
<placeholder name="ViewContentPlaceholder">
|
||||
|
@ -11,9 +11,6 @@
|
||||
<placeholder name="ViewPlaceholder"/>
|
||||
</menu>
|
||||
|
||||
<menu name="Transaction" action="TransactionAction">
|
||||
</menu>
|
||||
|
||||
<menu name="Actions" action="ActionsAction">
|
||||
<placeholder name="ActionsPlaceholder"/>
|
||||
</menu>
|
||||
|
Loading…
Reference in New Issue
Block a user