Changeset 2052
- Timestamp:
- 02/21/10 01:53:01 (5 months ago)
- Files:
-
- 1 modified
-
trunk/plugins/e2p_find.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/e2p_find.c
r2048 r2052 1808 1808 hold their respective default value 1809 1809 @param widget when first called, this is a page-child for the dialog notebook 1810 @param clean pointer to boolean value with which to AND the result. Should hold1811 TRUE whenfirst called1810 @param clean pointer to boolean value to hold the result. Should hold TRUE when 1811 first called 1812 1812 1813 1813 @return nothing, the result is communicated via @a clean … … 1840 1840 state = (gtk_spin_button_get_value (GTK_SPIN_BUTTON (widget)) == *value); 1841 1841 } 1842 1843 *clean = *clean && state; 1842 else 1843 state = TRUE; 1844 1845 if (!state) 1846 *clean = FALSE; 1844 1847 } 1845 1848