[Bug 1273220] Re: nvidia-331-updates 331.38-0ubuntu1: nvidia-331-updates kernel module failed to build

2014-01-28 Thread FluxKing
I click affects me before i saw that it was in regard to the deb package. 
My problem was in regard to the nvidia-installer and the unified memory kernel 
module

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1273220

Title:
  nvidia-331-updates 331.38-0ubuntu1: nvidia-331-updates kernel module
  failed to build

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-331-updates/+bug/1273220/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 386688] [NEW] g_idle_add() disrupts gtkFileChooser dialog

2009-06-13 Thread FluxKing
Public bug reported:

Ubuntu 9.04, Intel Core 2 Quad

libglib2.0-0: 2.20.1-0ubuntu2
ibgtk2.0-0: 2.16.1-0ubuntu2

When using g_idle_add() in GTK+ apps the gtkFileChooser stops workning.

The following test code show the bug on my Ubuntu 9.04 system, 
but the bug is not pressent under MinGW/WinXP.

The test app has a button that spawns a gtkFileChooser dialog.
if you uncomment the line g_idle_add(...) the dialog works, 
otherwise it will be nonfunctioning
--

#include gtk/gtk.h

void
hello (void)
{
g_print (Hello World\n);
}

void
destroy (void)
{
gtk_main_quit ();
}

gboolean G_MODULE_EXPORT handler(gpointer data){

printf(Idle Handler running\n);
return TRUE;
}

void opendialog(void){
GtkWidget *filedialog;

filedialog = gtk_file_chooser_dialog_new (Open File, NULL,
GTK_FILE_CHOOSER_ACTION_OPEN,
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, GTK_STOCK_OPEN,
GTK_RESPONSE_ACCEPT, NULL);

GtkFileFilter *filter;
filter = gtk_file_filter_new();

gtk_file_filter_add_pattern(filter, *.xml);

gtk_file_chooser_set_filter(GTK_FILE_CHOOSER(filedialog), filter);

if (gtk_dialog_run (GTK_DIALOG (filedialog)) == GTK_RESPONSE_ACCEPT)
{
char *filename;

filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER
(filedialog));
g_free (filename);
}

gtk_widget_destroy(filedialog);

}

main (int argc, char *argv[])
{
GtkWidget *window;
GtkWidget *button;

gtk_init (argc, argv);

window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
gtk_signal_connect (GTK_OBJECT (window), destroy,
GTK_SIGNAL_FUNC (destroy), NULL);
gtk_container_border_width (GTK_CONTAINER (window), 10);

button = gtk_button_new_with_label (Hello World);

gtk_signal_connect (GTK_OBJECT (button), clicked,
GTK_SIGNAL_FUNC (opendialog), NULL);
gtk_signal_connect_object (GTK_OBJECT (button), clicked,hello,GTK_OBJECT 
(window));
gtk_container_add (GTK_CONTAINER (window), button);
gtk_widget_show (button);

gtk_widget_show (window);

//Uncomment line below to remove bug
g_idle_add(handler,NULL);

gtk_main ();

return 0;
}

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
g_idle_add() disrupts gtkFileChooser dialog
https://bugs.launchpad.net/bugs/386688
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 384496] Re: gtkFileChooser dialog freezes, home and desktop missing

2009-06-12 Thread FluxKing
I just installed MIDIum under MinGW on a winxp box and I can confirm that the 
bug does NOT appear under this configuration.
So its eigther a Linux only or an Ubuntu only bug.
Will try with Fedora when I get my CD-ROM drive back.

-- 
gtkFileChooser dialog freezes, home and desktop missing
https://bugs.launchpad.net/bugs/384496
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 384496] Re: gtkFileChooser dialog freezes, home and desktop missing

2009-06-12 Thread FluxKing
I don't think I understant..
Run it once between?

-- 
gtkFileChooser dialog freezes, home and desktop missing
https://bugs.launchpad.net/bugs/384496
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 384496] Re: gtkFileChooser dialog freezes, home and desktop missing

2009-06-12 Thread FluxKing
The exact same code that works under MinGW doesn't work in Ubuntu

-- 
gtkFileChooser dialog freezes, home and desktop missing
https://bugs.launchpad.net/bugs/384496
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 384496] Re: gtkFileChooser dialog freezes, home and desktop missing

2009-06-12 Thread FluxKing
Dude you really need to work on your people skills...

What broken hack, run it once between??

The code I use is textbook.

What the FaCK are you talking about???

-- 
gtkFileChooser dialog freezes, home and desktop missing
https://bugs.launchpad.net/bugs/384496
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 384496] Re: gtkFileChooser dialog freezes, home and desktop missing

2009-06-12 Thread FluxKing
It's the other way around,
MIDIum is the name of the app that tries to spawn a gtkFileChooser dialog, 
just like any other app does. 
No difference here than what fx. gedit does when you select open file
The code I use to spawn the file open dialog is listet at the top of the bug 
report, 
and as stated I runs fine in WinXP with MinGW and when compiled outside my code 
(the source code of MIDIum)

-- 
gtkFileChooser dialog freezes, home and desktop missing
https://bugs.launchpad.net/bugs/384496
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 384496] Re: gtkFileChooser dialog freezes, home and desktop missing

2009-06-12 Thread FluxKing
You need to learn to read stacktraces before you talk down to people...

Anyway... I've found a way to reproduce the bug without any MIDIum code.

The following simple gtk+ attachment will produce the the 
undesired effect every time the hello world button is pressed.

It happens because an idle handler has been defined.

** Attachment added: bugtest.c
   http://launchpadlibrarian.net/27831626/bugtest.c

-- 
gtkFileChooser dialog freezes, home and desktop missing
https://bugs.launchpad.net/bugs/384496
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 384496] Re: gtkFileChooser dialog freezes, home and desktop missing

2009-06-12 Thread FluxKing
Did you actually compile and run the test code?
Pressing the button and getting a working dialog?

I did't even write the code (bugtest.c, except adding the g_idle_add()),
I got it from a gtk+ tutorial.

This is not a bug in my code since it's not my code, the code i attached 
(bugtest.c) is proof of concept,
compile it press button and get non functioning dialog,
uncomment g_idle_add compile press button and get a functioning dialog.

It's a bug in the gtk_main loop, a bug that appears with or without any SDL or 
MIDIum code of mine.
If it's a bug in mine and others software, that means that it's forbidden to 
use g_idle_add().

-- 
gtkFileChooser dialog freezes, home and desktop missing
https://bugs.launchpad.net/bugs/384496
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 384496] Re: gtkFileChooser dialog freezes, home and desktop missing

2009-06-11 Thread FluxKing
I'm standing by to provide any and all information I can about this bug since 
is a show stopper for me.
As mentioned the app doesn't crash so I can't get a backtrace.
Please tell me what information you need.

-- 
gtkFileChooser dialog freezes, home and desktop missing
https://bugs.launchpad.net/bugs/384496
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 384496] Re: gtkFileChooser dialog freezes, home and desktop missing

2009-06-11 Thread FluxKing
This is a strace of me running the program clicking open, cancel and
then exits.

** Attachment added: strace
   http://launchpadlibrarian.net/27778338/strace.out.gz

-- 
gtkFileChooser dialog freezes, home and desktop missing
https://bugs.launchpad.net/bugs/384496
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 384496] Re: gtkFileChooser dialog freezes, home and desktop missing

2009-06-11 Thread FluxKing
(gdb) bt
#0  0xb802f430 in __kernel_vsyscall ()
#1  0xb6d927a6 in nanosleep () from /lib/tls/i686/cmov/libc.so.6
#2  0xb7668d89 in SDL_Delay () from /usr/lib/libSDL-1.2.so.0
#3  0x081525af in GInterface::systemTimingUpdate (this=0x93325b8, 
actualstep=11996)
at /home/demonic/Projects/MIDIum/MIDIum/GInterface.cpp:354
#4  0x0816a137 in runEdit ()
at /home/demonic/Projects/MIDIum/MIDIum/gtkrystaline.cpp:1029
#5  0x0816a318 in engineIteration ()
at /home/demonic/Projects/MIDIum/MIDIum/gtkrystaline.cpp:660
#6  0x08174615 in render ()
#7  0xb6fb2c81 in ?? () from /usr/lib/libglib-2.0.so.0
#8  0xb6fb4b88 in g_main_context_dispatch () from /usr/lib/libglib-2.0.so.0
#9  0xb6fb80eb in ?? () from /usr/lib/libglib-2.0.so.0
#10 0xb6fb85ba in g_main_loop_run () from /usr/lib/libglib-2.0.so.0
#11 0xb799a9d5 in IA__gtk_dialog_run (dialog=0x92cf100)
at /build/buildd/gtk+2.0-2.16.1/gtk/gtkdialog.c:1090
#12 0x08174ea4 in on_open1_activate ()
#13 0xb70503a4 in g_cclosure_marshal_VOID__VOID ()
   from /usr/lib/libgobject-2.0.so.0
#14 0xb7042c7b in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
#15 0xb7058e57 in ?? () from /usr/lib/libgobject-2.0.so.0
#16 0xb705a4b9 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0
---Type return to continue, or q return to quit---
#17 0xb705a936 in g_signal_emit () from /usr/lib/libgobject-2.0.so.0
#18 0xb7b443f7 in IA__gtk_widget_activate (widget=0x8f850f0)
at /build/buildd/gtk+2.0-2.16.1/gtk/gtkwidget.c:4792
#19 0xb7a32410 in IA__gtk_menu_shell_activate_item (menu_shell=0x8fa8060, 
menu_item=0x8f850f0, force_deactivate=1)
at /build/buildd/gtk+2.0-2.16.1/gtk/gtkmenushell.c:1139
#20 0xb7a33fed in gtk_menu_shell_button_release (widget=0x8fa8060, 
event=0x971a960) at /build/buildd/gtk+2.0-2.16.1/gtk/gtkmenushell.c:678
#21 0xb7a29c5b in gtk_menu_button_release (widget=0x8fa8060, event=0x971a960)
at /build/buildd/gtk+2.0-2.16.1/gtk/gtkmenu.c:2950
#22 0xb7a23526 in _gtk_marshal_BOOLEAN__BOXED (closure=0x8f46740, 
return_value=0xbff4afd0, n_param_values=2, param_values=0xb0934968, 
invocation_hint=0xbff4afbc, marshal_data=0xb7a29ba0)
at /build/buildd/gtk+2.0-2.16.1/gtk/gtkmarshalers.c:84
#23 0xb70413d9 in ?? () from /usr/lib/libgobject-2.0.so.0
#24 0xb7042c7b in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
#25 0xb7058aff in ?? () from /usr/lib/libgobject-2.0.so.0
#26 0xb705a34f in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0
#27 0xb705a936 in g_signal_emit () from /usr/lib/libgobject-2.0.so.0
#28 0xb7b3e2ae in gtk_widget_event_internal (widget=0x8fa8060, event=0x971a960)
at /build/buildd/gtk+2.0-2.16.1/gtk/gtkwidget.c:4761
#29 0xb7a1bf7c in IA__gtk_propagate_event (widget=0x8fa8060, event=0x971a960)
at /build/buildd/gtk+2.0-2.16.1/gtk/gtkmain.c:2396
---Type return to continue, or q return to quit---
#30 0xb7a1d327 in IA__gtk_main_do_event (event=0x971a960)
at /build/buildd/gtk+2.0-2.16.1/gtk/gtkmain.c:1601
#31 0xb721234a in gdk_event_dispatch (source=0x8f40530, callback=0, 
user_data=0x0) at /build/buildd/gtk+2.0-2.16.1/gdk/x11/gdkevents-x11.c:2364
#32 0xb6fb4b88 in g_main_context_dispatch () from /usr/lib/libglib-2.0.so.0
#33 0xb6fb80eb in ?? () from /usr/lib/libglib-2.0.so.0
#34 0xb6fb85ba in g_main_loop_run () from /usr/lib/libglib-2.0.so.0
#35 0xb7a1d7d9 in IA__gtk_main ()
at /build/buildd/gtk+2.0-2.16.1/gtk/gtkmain.c:1205
#36 0x08175b0b in main ()
(gdb)

-- 
gtkFileChooser dialog freezes, home and desktop missing
https://bugs.launchpad.net/bugs/384496
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 384496] Re: gtkFileChooser dialog freezes, home and desktop missing

2009-06-11 Thread FluxKing
As i said, the program hangs with an incomplete non functioning gtk dialog,
SDL i in another thread, I guess.

Here's a bit more info.

(gdb) bt full
#0  0xb7f04430 in __kernel_vsyscall ()
No symbol table info available.
#1  0xb6c677a6 in nanosleep () from /lib/tls/i686/cmov/libc.so.6
No symbol table info available.
#2  0xb753dd89 in SDL_Delay () from /usr/lib/libSDL-1.2.so.0
No symbol table info available.
#3  0x081525af in GInterface::systemTimingUpdate (this=0x96857b8, 
actualstep=10809)
at /home/demonic/Projects/MIDIum/MIDIum/GInterface.cpp:354
dtime = 10809
delay = 10
#4  0x0816a137 in runEdit ()
at /home/demonic/Projects/MIDIum/MIDIum/gtkrystaline.cpp:1029
No locals.
#5  0x0816a318 in engineIteration ()
at /home/demonic/Projects/MIDIum/MIDIum/gtkrystaline.cpp:660
No locals.
#6  0x08174615 in render ()
__ioinit = {static _S_refcount = optimized out, 
  static _S_synced_with_stdio = optimized out}
objectsLoaded = false
#7  0xb6e87c81 in ?? () from /usr/lib/libglib-2.0.so.0
No symbol table info available.
---Type return to continue, or q return to quit---
#8  0xb6e89b88 in g_main_context_dispatch () from /usr/lib/libglib-2.0.so.0
No symbol table info available.
#9  0xb6e8d0eb in ?? () from /usr/lib/libglib-2.0.so.0
No symbol table info available.
#10 0xb6e8d5ba in g_main_loop_run () from /usr/lib/libglib-2.0.so.0
No symbol table info available.
#11 0xb786f9d5 in IA__gtk_dialog_run (dialog=0x9625118)
at /build/buildd/gtk+2.0-2.16.1/gtk/gtkdialog.c:1090
ri = {dialog = 0x0, response_id = -1, loop = 0x9ad44e0, destroyed = 0}
was_modal = 0
response_handler = 5448
unmap_handler = 5449
destroy_handler = 5451
delete_handler = 5450
__PRETTY_FUNCTION__ = IA__gtk_dialog_run
#12 0x08174ea4 in on_open1_activate ()
__ioinit = {static _S_refcount = optimized out, 
  static _S_synced_with_stdio = optimized out}
objectsLoaded = false
#13 0xb6f253a4 in g_cclosure_marshal_VOID__VOID ()
   from /usr/lib/libgobject-2.0.so.0
No symbol table info available.
#14 0xb6f17c7b in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
---Type return to continue, or q return to quit---
No symbol table info available.
#15 0xb6f2de57 in ?? () from /usr/lib/libgobject-2.0.so.0
No symbol table info available.
#16 0xb6f2f4b9 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0
No symbol table info available.
#17 0xb6f2f936 in g_signal_emit () from /usr/lib/libgobject-2.0.so.0
No symbol table info available.
#18 0xb7a193f7 in IA__gtk_widget_activate (widget=0x92d70f0)
at /build/buildd/gtk+2.0-2.16.1/gtk/gtkwidget.c:4792
__PRETTY_FUNCTION__ = IA__gtk_widget_activate
#19 0xb7907410 in IA__gtk_menu_shell_activate_item (menu_shell=0x92fa060, 
menu_item=0x92d70f0, force_deactivate=1)
at /build/buildd/gtk+2.0-2.16.1/gtk/gtkmenushell.c:1139
slist = value optimized out
shells = (GSList *) 0x95dd2d8
__PRETTY_FUNCTION__ = IA__gtk_menu_shell_activate_item
#20 0xb7908fed in gtk_menu_shell_button_release (widget=0x92fa060, 
event=0x9a8b818) at /build/buildd/gtk+2.0-2.16.1/gtk/gtkmenushell.c:678
submenu = (GtkWidget *) 0x0
menu_item = (GtkWidget *) 0x92d70f0
deactivate = value optimized out
#21 0xb78fec5b in gtk_menu_button_release (widget=0x92fa060, event=0x9a8b818)
at /build/buildd/gtk+2.0-2.16.1/gtk/gtkmenu.c:2950
---Type return to continue, or q return to quit---
priv = value optimized out
#22 0xb78f8526 in _gtk_marshal_BOOLEAN__BOXED (closure=0x9298740, 
return_value=0xbfa1f2b0, n_param_values=2, param_values=0x95dda50, 
invocation_hint=0xbfa1f29c, marshal_data=0xb78feba0)
at /build/buildd/gtk+2.0-2.16.1/gtk/gtkmarshalers.c:84
data1 = (gpointer) 0x92fa060
data2 = value optimized out
v_return = value optimized out
__PRETTY_FUNCTION__ = _gtk_marshal_BOOLEAN__BOXED
#23 0xb6f163d9 in ?? () from /usr/lib/libgobject-2.0.so.0
No symbol table info available.
#24 0xb6f17c7b in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
No symbol table info available.
#25 0xb6f2daff in ?? () from /usr/lib/libgobject-2.0.so.0
No symbol table info available.
#26 0xb6f2f34f in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0
No symbol table info available.
#27 0xb6f2f936 in g_signal_emit () from /usr/lib/libgobject-2.0.so.0
No symbol table info available.
#28 0xb7a132ae in gtk_widget_event_internal (widget=0x92fa060, event=0x9a8b818)
at /build/buildd/gtk+2.0-2.16.1/gtk/gtkwidget.c:4761
signal_num = value optimized out
return_val = 0
---Type return to continue, or q return to quit---
#29 0xb78f0f7c in IA__gtk_propagate_event (widget=0x92fa060, event=0x9a8b818)
at /build/buildd/gtk+2.0-2.16.1/gtk/gtkmain.c:2396
tmp = (GtkWidget *) 0x92fa060
handled_event = 0
__PRETTY_FUNCTION__ = IA__gtk_propagate_event
#30 0xb78f2327 in IA__gtk_main_do_event 

[Bug 384496] Re: gtkFileChooser dialog freezes, home and desktop missing

2009-06-11 Thread FluxKing
About midium:

It's a multimedia app with a combined OpenGL/OpenAL render loop,
meanwhile gtk_main isn't doing what it's supposed to, namely updating the 
gtkFileChooser dialog,
so thats properly what the trace shows...?

-- 
gtkFileChooser dialog freezes, home and desktop missing
https://bugs.launchpad.net/bugs/384496
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 384496] [NEW] gtkFileChooser dialog freezes, home and desktop missing

2009-06-07 Thread FluxKing
Public bug reported:

System: Ubuntu 9.04 Core 2 Quad, just updated
Package: gtk/glib
To reproduce I can provide link to app code.
Don't know what exactly causes the bug.

--

I'm struggling with a gtk bug that I don't know if is ubuntu specific
but i suspect it is.

In my app when I open a file chooser dialog the dialog will freeze with
an hourglass and home folder and desktop icons are missing from the left
pane. the dialog never unfreezes.

If I take the same open dialog code and compile in a small test app it
works.

A user on the gtk list thinks that its related to linking of libgio.

I link my app with gtk, gtksourcview1, gtkglext1, glew, opengl, openal,
sdl, libxml and others.

This is the code I use which works as a simple hello world app:

-

#include gtk/gtk.h

void
hello (void)
{
g_print (Hello World\n);
}

void
destroy (void)
{
gtk_main_quit ();
}

void opendialog(void){
GtkWidget *filedialog;

filedialog = gtk_file_chooser_dialog_new (Open File, NULL,
GTK_FILE_CHOOSER_ACTION_OPEN,
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, GTK_STOCK_OPEN,
GTK_RESPONSE_ACCEPT, NULL);

GtkFileFilter *filter;
filter = gtk_file_filter_new();

gtk_file_filter_add_pattern(filter, *.xml);

gtk_file_chooser_set_filter(GTK_FILE_CHOOSER(filed ialog), filter);


if (gtk_dialog_run (GTK_DIALOG (filedialog)) == GTK_RESPONSE_ACCEPT)
{
char *filename;

filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER
(filedialog));
g_free (filename);
}

gtk_widget_destroy(filedialog);

}


main (int argc, char *argv[])
{
GtkWidget *window;
GtkWidget *button;

gtk_init (argc, argv);

window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
gtk_signal_connect (GTK_OBJECT (window), destroy,
GTK_SIGNAL_FUNC (destroy), NULL);
gtk_container_border_width (GTK_CONTAINER (window), 10);

button = gtk_button_new_with_label (Hello World);

gtk_signal_connect (GTK_OBJECT (button), clicked,
GTK_SIGNAL_FUNC (opendialog), NULL);
gtk_signal_connect_object (GTK_OBJECT (button), clicked,
hello,
GTK_OBJECT (window));
gtk_container_add (GTK_CONTAINER (window), button);
gtk_widget_show (button);

gtk_widget_show (window);

gtk_main ();

return 0;
}

ProblemType: Bug
Architecture: i386
DistroRelease: Ubuntu 9.04
NonfreeKernelModules: fglrx
Package: libgtk2.0-0 2.16.1-0ubuntu2
ProcEnviron:
 LANG=en_DK.UTF-8
 SHELL=/bin/bash
SourcePackage: gtk+2.0
Uname: Linux 2.6.28-11-generic i686

** Affects: gtk+2.0 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386

-- 
gtkFileChooser dialog freezes, home and desktop missing
https://bugs.launchpad.net/bugs/384496
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 384496] Re: gtkFileChooser dialog freezes, home and desktop missing

2009-06-07 Thread FluxKing

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/27615730/Dependencies.txt

-- 
gtkFileChooser dialog freezes, home and desktop missing
https://bugs.launchpad.net/bugs/384496
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs