7

Possible Duplicate:
Gdk Gtk warnings and errors from the command line

I'm fairly new to Ubuntu, and I decided that I want to learn to develop applications for it. I found some great tutorials, and installed Quickly and started to play around with app development. For some reason though, when I typed in "Quickly create ubuntu-application hello-world" like the tutorial said, the terminal window said the normal "Creating project directory hello-world Creating bzr repository and committing Launching your newly created project!" But then said (hello-world:23506): Gtk-WARNING **: Unable to locate theme engine in module_path: "pixmap",

(hello-world:23506): Gtk-WARNING **: Unable to locate theme engine in module_path: "pixmap",

(hello-world:23506): Gtk-WARNING **: Unable to locate theme engine in module_path: "pixmap",

(hello-world:23506): Gtk-WARNING **: Unable to locate theme engine in module_path: "pixmap",

The "hello world" application launched seemingly fine after that, but is it a problem? If so, how can I eliminate it? I'm on Ubuntu 11.10.

rocket101
  • 457

1 Answers1

14

It's a fairly low level error but you should be able to fix this with installing it...

From command line

sudo apt-get install gtk2-engines-pixbuf

or click the icon here: gtk2-engines-pixbuf Install gtk2-engines-pixbuf

Found the solution on Launchpad.

Rinzwind
  • 299,756
  • 2
    I have a 64bit ubuntu and gtk2-engines-pixbuf had been installed. I had to install gtk2-engines-pixbuf:i386 to dismiss the warning. – HongboZhu Dec 09 '13 at 09:25