John Levon <[EMAIL PROTECTED]> writes:

| How should I get rid of stuff from commandtags.h ? Comment it out ?
| The numbering will screw up either way ...

The numbering is done manually and will have to be redone.

Just comment out the LFUNs that you don't need anymore.


| I spent much time arguing with Qt and KDE last night :( They have really
| irritating aspects of their API, like necessary member functions
| being non-virtual, and constructors that can't construct aspects of parent
| constructors etc. grrr.

I will mention one small trick btw. used in iostream classes:

class Foo {
public:
        void public_method(...) {
                do_it(...);
        }
protected:
        virtual void do_it(...) {
                ...;
        }
};


        Lgb

Reply via email to