|
Archives
D Programming
digitalmars.Ddigitalmars.D.bugs digitalmars.D.dtl digitalmars.D.ide digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger D.gnu D C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript electronics |
digitalmars.D.learn - Empty string is null?
How to pass it to C functions that expect a non-null string? Specifically to GTK+ (using gtkD) I also asked this on stackoverflow http://stackoverflow.com/questions/931360/ ------------ Using D1 with phobos I have a text entry field, instance of gtk.Entry.Entry, calling setText("") raises a run time error Gtk-CRITICAL **: gtk_entry_set_text: assertion `text != NULL' failed Why? It seems to be a problem with D, I tried this: string empty = ""; assert (empty != null); my_entry.setText(empty) The program terminated as the assertion failed. How can I work around this? May 30 2009
hasen wrote:How to pass it to C functions that expect a non-null string? Specifically to GTK+ (using gtkD) I also asked this on stackoverflow http://stackoverflow.com/questions/931360/ ------------ Using D1 with phobos I have a text entry field, instance of gtk.Entry.Entry, calling setText("") raises a run time error Gtk-CRITICAL **: gtk_entry_set_text: assertion `text != NULL' failed Why? It seems to be a problem with D, I tried this: string empty = ""; assert (empty != null); my_entry.setText(empty) The program terminated as the assertion failed. How can I work around this? May 31 2009
hasen wrote:How to pass it to C functions that expect a non-null string? Specifically to GTK+ (using gtkD) I also asked this on stackoverflow http://stackoverflow.com/questions/931360/ ------------ Using D1 with phobos I have a text entry field, instance of gtk.Entry.Entry, calling setText("") raises a run time error Gtk-CRITICAL **: gtk_entry_set_text: assertion `text != NULL' failed Why? It seems to be a problem with D, I tried this: string empty = ""; assert (empty != null); my_entry.setText(empty) The program terminated as the assertion failed. How can I work around this? May 31 2009
|