Re: Image under framebuffer

2003-06-11 Thread dcabaton
Ok, i find informations about images problems... "" Yes, this is a known "bug". Glade generated code seems to look for pixmaps in the default gnome directory (/usr/share/pixmaps/david). This should be solved by putting there the pixmaps, or linking /usr/share/local/pixmaps/david to /usr/share

Re: Save errors message

2003-06-11 Thread dcabaton
Ok, it's clear. :)) Thank's for help ! Regards / David PS : sorry for my englsih but... i'm french :)) -- +--+ | David CABATON alias Obelix | +--+ | | |[EMAIL PROTECTED]| |

Re: Save errors message

2003-06-11 Thread dcabaton
Error messages and warnings go to stderr but you are only catching stdout. Try './test > errors.log 2>&1'. Sven YES : this is the solution ! But can you explain the "2>&1" !! what this ? Thanks ! :)) David -- +--+ | David CABATON alias Obelix | +--

Image under framebuffer

2003-06-11 Thread dcabaton
Hi ! i create an gtk interface with glade for framebuffer but i have several problems !!! - under glade, i add an image but under framebuffer the application don't show the image ! An example of the code source to display an image... "" image12 = create_pixmap (window1, "GNOME-Hint_alt.png");

Save errors message

2003-06-11 Thread dcabaton
Hi ! I create an gtk interface with glade for the framebuffer ! When i run the application there is mani errors message but i can't read this ! I run with ./test > errors.log but there is no message in the file ! The messages are about GTK Warning... How to record the errors messages of GTK ?