aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2006-10-23 22:43:11 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2006-10-23 22:43:11 +0000
commitc629886ab1db2fbab9d5ad67fb1dcca8a85fc51c (patch)
tree583baf0bb6e7cc7b9f4e03b611bc00f1684d1001 /gtk
parent3d40131d07745bf49d95db391c36ca2c44906c44 (diff)
Fix for bug 1178. Allow FT_?INT24 BASE_DEC VALs in the expression selection dialog.
svn path=/trunk/; revision=19666
Diffstat (limited to 'gtk')
-rw-r--r--gtk/dfilter_expr_dlg.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gtk/dfilter_expr_dlg.c b/gtk/dfilter_expr_dlg.c
index fc48ad5291..1eccd111f7 100644
--- a/gtk/dfilter_expr_dlg.c
+++ b/gtk/dfilter_expr_dlg.c
@@ -25,7 +25,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/* Todo -
@@ -696,6 +696,7 @@ value_list_sel_cb(GtkTreeSelection *sel, gpointer value_entry_arg)
case FT_UINT8:
case FT_UINT16:
+ case FT_UINT24:
case FT_UINT32:
g_snprintf(value_string, sizeof value_string,
"%u", value->value);
@@ -703,6 +704,7 @@ value_list_sel_cb(GtkTreeSelection *sel, gpointer value_entry_arg)
case FT_INT8:
case FT_INT16:
+ case FT_INT24:
case FT_INT32:
g_snprintf(value_string, sizeof value_string,
"%d", value->value);