2002-08-25 Miguel de Icaza <miguel@ximian.com>
* gtk/TextBuffer.custom: Added SetText with a single argumnet. * gtk/Table.custom: Added empty constructor. GtkTables automatically grow. svn path=/trunk/gtk-sharp/; revision=7024
This commit is contained in:
parent
98cf0e893e
commit
c1b3d3e98d
5 changed files with 19 additions and 4 deletions
|
@ -1,3 +1,10 @@
|
|||
2002-08-25 Miguel de Icaza <miguel@ximian.com>
|
||||
|
||||
* gtk/TextBuffer.custom: Added SetText with a single argumnet.
|
||||
|
||||
* gtk/Table.custom: Added empty constructor. GtkTables
|
||||
automatically grow.
|
||||
|
||||
2002-08-23 Rachel Hestilow <hestilow@ximian.com>
|
||||
|
||||
* glue/Makefile.am: Fix # terminators.
|
||||
|
|
4
gtk/Table.custom
Normal file
4
gtk/Table.custom
Normal file
|
@ -0,0 +1,4 @@
|
|||
public Table(uint rows, uint columns, bool homogeneous)
|
||||
{
|
||||
Raw = gtk_table_new (0, 0, false);
|
||||
}
|
4
gtk/TextBuffer.custom
Normal file
4
gtk/TextBuffer.custom
Normal file
|
@ -0,0 +1,4 @@
|
|||
|
||||
public void SetText (string text) {
|
||||
gtk_text_buffer_set_text (Handle, text, text.Length);
|
||||
}
|
2
makefile
2
makefile
|
@ -1,6 +1,6 @@
|
|||
NATIVE_DIRS = glue parser
|
||||
|
||||
DIRS=generator api glib pango atk gdk art gtk glade gnome sample
|
||||
DIRS=generator api glib pango atk gdk gtk glade gnome sample
|
||||
ROOT=/cygdrive/$(subst \,/,$(subst :\,/,$(SYSTEMROOT)))
|
||||
CSC=$(ROOT)/microsoft.net/framework/v1.0.3705/csc.exe
|
||||
MCS=mcs
|
||||
|
|
|
@ -450,9 +450,9 @@ class IdConnection : IDisposable
|
|||
public IdConnection ()
|
||||
{
|
||||
cnc = new SqlConnection ();
|
||||
string connectionString = "hostaddr=127.0.0.1;" +
|
||||
"user=monotest;" +
|
||||
"password=monotest;" +
|
||||
string connectionString = "" +
|
||||
"" +
|
||||
"" +
|
||||
"dbname=monotest";
|
||||
|
||||
cnc.ConnectionString = connectionString;
|
||||
|
|
Loading…
Add table
Reference in a new issue