Search:

Type: Posts; User: gmclachl; Keyword(s):

Page 1 of 6 1 2 3 4

Search: Search took 0.04 seconds.

  1. [all variants] do-release-upgrade and uninstalled packages

    Hi,

    Not sure this is the correct forum, I started out with the desktop edition and then removed all the desktop parts. So I am now pretty much running the server edition but when I try to run...
  2. Re: C++ embedded Lua: requiring shared object files

    Make sure you have installed all the dev packages.
  3. Replies
    8
    Views
    430

    Re: Java Scope. Why does this fail?

    I doubt it would pass. There is no way of guaranteeing the order in which tests are runs. So I would move any initialisation of wtf to a setUp() method, this will be called before each test is...
  4. Thread: QT4 problem

    by gmclachl
    Replies
    3
    Views
    381

    Re: QT4 problem

    You can do a

    sudo apt-get libqt4-dev
  5. Replies
    4
    Views
    307

    Re: PHP IDE with project-wide find&replace

    Not much help just now as it is only in Jaunty and still not stable but KDevelop4 has PHP support.

    There is also a couple of PHP plugins for Eclipse, and a Eclipse spin off whose name escapes me...
  6. Re: execute command lines in kdevelop program

    Don't know if it helps by you can add a terminal view.

    George
  7. Thread: Qt Creator

    by gmclachl
    Replies
    3
    Views
    12,121

    Re: Qt Creator

    I had a play with it, and it's pretty good. I still prefer Kdevelop4. Which is getting better all the time.
  8. Replies
    2
    Views
    1,322

    Re: QtService class

    That's strange because I did read some docs that said it was included in the Open Source edition.

    I guess not.

    Thanks
    George
  9. Replies
    2
    Views
    1,322

    QtService class

    Hi,
    I am not sure if I should put this in the Jaunty forum or here. I am trying to use QtService but it doesn't appear to exist in Jaunty, not sure if it is in 8.10 either.

    I have looked...
  10. Thread: Compiling C++

    by gmclachl
    Replies
    5
    Views
    403

    Re: Compiling C++

    If you are using g++ (which you will be) you can miss out

    chmod u+x executable

    You can pass various flags to the compiler. I recommend you have a look at this link. ...
  11. Replies
    4
    Views
    287

    Re: c++ member initialisation lists

    Thanks for the replies, I guess the best way is to initialise it in the constructor

    George
  12. Replies
    4
    Views
    287

    c++ member initialisation lists

    Hi, I wondered is it possible to initialise an class member which is a pointer to an object in the member initialisation list.

    class A {

    public:
    ....
    private:
    SomeObject* obj...
  13. Re: [JAVA] Inheritance vs Interface vs Attributes

    Which is what I meant
  14. Re: [JAVA] Inheritance vs Interface vs Attributes

    Simply put it boils down to is-a or has-a. From you example Car is a type of Vechile, Sedan is a type of Car. Red has a relationship with the car.

    George
  15. Building against zlib1g-dev and pkg-config

    I am trying to write some things against zlib, however even though I have installed zlib1g-dev I am not getting an entry in pkg-config.

    I know there is a fairly easy work round of specifying the...
  16. Re: C++ pointers to objects and object as method argument

    Actually never mind I was being silly.

    George
  17. [SOLVED] C++ pointers to objects and object as method argument

    I have been told it is bad to pass in a pointer as a method argument and you should try to do it by reference instead, but I am a bit confused as to how.

    If I define an Object Foo with a...
  18. Replies
    5
    Views
    1,316

    Re: Looking for a C++ compiler

    Not sure if it is in there by default you might need to install build-essential.
  19. Re: Couldnt successful compile after successful compilation

    pkg-config is your friend.

    If you run "pkg-config --cflags glib-2.0" from the command line you will see a list of includes.

    When you compile you can do

    gcc xxxxx.c -o xxxxx `pkg-config...
  20. Replies
    1
    Views
    1,237

    Re: Compile, Link and Debug C/C++

    I don't think Gimp is a good starting point to learn this, I would pick a smaller project to start looking at.

    As for IDE's I like Anjuta but it's custom Makefile support is poor, I think...
  21. Replies
    0
    Views
    235

    [ubuntu] Mounting samba shares during boot

    I am having weird permission problems mounting a samba share during boot/login.

    I am using the dispatcher scripts in NM to mount these with the following command

    smbmount...
  22. Replies
    4
    Views
    727

    Re: GTK library broken with C++?

    How are you including the headers are you using pkg-config?

    George
  23. Re: OpenGL/FreeGlut program compiles with no result

    You have just compiled it, you didn't run it. You haven't specified a output file using -o flag. Look in the directory for an a.out and run that.

    George
  24. Re: setting a general relative classpath in ubuntu

    You can specify a classpath at compile time as well as through an environmental setting. The separator in Linux is a :

    So from your windows example it would be

    export CLASSPATH=.:..:../..
    ...
  25. Replies
    2
    Views
    631

    Re: Anjuta Compile problems

    Hi,
    I have the same version compiled and didn't have any problems.

    Can you post your configure options?

    George
Results 1 to 25 of 136
Page 1 of 6 1 2 3 4