Browse Source

Put back ● as the TextEntry invisible character and tell gmcs our files

are UTF-8 encoded instead.

git-svn-id: file:///srv/caca.zoy.org/var/lib/svn/libpipi/trunk@2915 92316355-f0b4-4df1-b90c-862c8a59935f
remotes/tiles
sam 16 years ago
parent
commit
8c682c5de7
2 changed files with 3 additions and 3 deletions
  1. +1
    -1
      ThePimp/Makefile.am
  2. +2
    -2
      ThePimp/gtk-gui/ThePimp.NewFile.cs

+ 1
- 1
ThePimp/Makefile.am View File

@@ -39,7 +39,7 @@ Pimp.exe: ../pipi-sharp/pipi-sharp.dll $(pimp_sources) $(pimp_resources)
cp ../pipi-sharp/pipi-sharp.dll .
cp ../pipi-sharp/pipi-sharp.dll.config .
cp ../pipi-sharp/pipi-sharp.dll.mdb .
$(GMCS) -debug -out:$@ -lib:./ \
$(GMCS) -debug -codepage:utf8 -out:$@ -lib:./ \
$(addprefix $(srcdir)/, $(pimp_sources)) \
$(foreach x, $(pimp_resources), \
-resource:$(srcdir)/$x,ThePimp.$(subst /,.,$x)) \


+ 2
- 2
ThePimp/gtk-gui/ThePimp.NewFile.cs View File

@@ -75,7 +75,7 @@ namespace ThePimp {
this.entry1.Text = Mono.Unix.Catalog.GetString("1024");
this.entry1.IsEditable = true;
this.entry1.WidthChars = 6;
this.entry1.InvisibleChar = 'x';
this.entry1.InvisibleChar = '';
this.entry1.Xalign = 1F;
this.table1.Add(this.entry1);
Gtk.Table.TableChild w3 = ((Gtk.Table.TableChild)(this.table1[this.entry1]));
@@ -90,7 +90,7 @@ namespace ThePimp {
this.entry2.Text = Mono.Unix.Catalog.GetString("768");
this.entry2.IsEditable = true;
this.entry2.WidthChars = 6;
this.entry2.InvisibleChar = 'x';
this.entry2.InvisibleChar = '';
this.entry2.Xalign = 1F;
this.table1.Add(this.entry2);
Gtk.Table.TableChild w4 = ((Gtk.Table.TableChild)(this.table1[this.entry2]));


Loading…
Cancel
Save