Changeset 2915


Ignore:
Timestamp:
10/11/08 12:19:49 (5 years ago)
Author:
sam
Message:

Put back ● as the TextEntry? invisible character and tell gmcs our files
are UTF-8 encoded instead.

Location:
libpipi/trunk/ThePimp
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libpipi/trunk/ThePimp/Makefile.am

    r2912 r2915  
    4040        cp ../pipi-sharp/pipi-sharp.dll.config . 
    4141        cp ../pipi-sharp/pipi-sharp.dll.mdb . 
    42         $(GMCS) -debug -out:$@ -lib:./ \ 
     42        $(GMCS) -debug -codepage:utf8 -out:$@ -lib:./ \ 
    4343          $(addprefix $(srcdir)/, $(pimp_sources)) \ 
    4444          $(foreach x, $(pimp_resources), \ 
  • libpipi/trunk/ThePimp/gtk-gui/ThePimp.NewFile.cs

    r2897 r2915  
    7676            this.entry1.IsEditable = true; 
    7777            this.entry1.WidthChars = 6; 
    78             this.entry1.InvisibleChar = 'x'; 
     78            this.entry1.InvisibleChar = ''; 
    7979            this.entry1.Xalign = 1F; 
    8080            this.table1.Add(this.entry1); 
     
    9191            this.entry2.IsEditable = true; 
    9292            this.entry2.WidthChars = 6; 
    93             this.entry2.InvisibleChar = 'x'; 
     93            this.entry2.InvisibleChar = ''; 
    9494            this.entry2.Xalign = 1F; 
    9595            this.table1.Add(this.entry2); 
Note: See TracChangeset for help on using the changeset viewer.