views:

19

answers:

1

I want to get full console functionality running the program in Qt Creator, the same problem as described here: http://stackoverflow.com/questions/1356328/console-input-with-qt-creator

When I check "Run in Terminal" in configuration properties, empty terminal window is opened, without my program output. Tools - Options - General - Terminal has this value: "x-terminal-emulator -e". How can I get this working? My OS is Ubuntu 10.4.

Note: Please don't close this question, it is not duplicated! I need solution for Ubuntu OS.

+3  A: 

Under Tools-Options-Environment-General, change the terminal value from x-terminal-emulator -e to /usr/bin/xterm -e. This did the trick for me.

(Found this fix here: https://bugs.launchpad.net/ubuntu/+source/qtcreator/+bug/566387)

Greg S
Thanks, just found the same page :)
Alex Farber