gcalctool r1993 - in trunk: . gcalctool



Author: richb
Date: Thu Mar  6 15:20:53 2008
New Revision: 1993
URL: http://svn.gnome.org/viewvc/gcalctool?rev=1993&view=rev

Log:
    * gcalctool/calctool.h:
      Fix for bug #520474 - Calculator uses 06 in place of decimal.


Modified:
   trunk/ChangeLog
   trunk/gcalctool/calctool.h

Modified: trunk/gcalctool/calctool.h
==============================================================================
--- trunk/gcalctool/calctool.h	(original)
+++ trunk/gcalctool/calctool.h	Thu Mar  6 15:20:53 2008
@@ -208,10 +208,10 @@
     
     char display[MAXLINE];             /* Current calculator display. */
     char *exp_posn;                    /* Position of the exponent sign. */
-    char fnum[MAX_DIGITS];             /* Scratchpad for fixed numbers. */
+    char fnum[MAX_LOCALIZED];          /* Scratchpad for fixed numbers. */
     const char *radix;                 /* Locale specific radix string. */
     char *shelf;                       /* PUT selection shelf contents. */
-    char snum[MAX_DIGITS];             /* Scratchpad for scientific numbers. */
+    char snum[MAX_LOCALIZED];          /* Scratchpad for scientific numbers. */
     const char *tsep;                  /* Locale specific thousands seperator. */
 
     char fun_names[MAX_FUNCTIONS][MAXLINE];  /* Function names from .gcalctoolcf. */



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]