Age | Commit message (Collapse) | Author | Files | Lines |
---|---|---|---|---|
2004-03-05 | Corrected and tested. Need verification on real device. | christophe | 95 | -738/+737 |
2004-03-02 | fixed include and namespace (sic!) usage. | alwin | 1 | -2/+2 |
2004-03-02 | Formatter: libopie -> libopie2 | drw | 4 | -5/+4 |
2004-03-02 | Clock: libopie -> libopie2 | drw | 5 | -19/+18 |
2004-03-02 | Calculator: libopie -> libopie2 | drw | 4 | -5/+4 |
2004-03-02 | Buzzword: libopie -> libopie2 | drw | 4 | -9/+9 |
2004-03-02 | ParaShoot: libopie -> libopie2 | drw | 4 | -5/+5 |
2004-03-02 | ZLines: libopie -> libopie2 | drw | 4 | -6/+5 |
2004-03-02 | KCheckers: libopie -> libopie2 | drw | 4 | -5/+6 |
2004-03-02 | TicTac: libopie -> libopie2 | drw | 4 | -4/+5 |
2004-03-02 | fix typo | mickeyl | 1 | -1/+1 |
2004-03-02 | Tetrix: libopie -> libopie2 | drw | 4 | -5/+5 |
2004-03-02 | Word game: libopie -> libopie2, added libwordgames.so* to control file | drw | 4 | -6/+6 |
2004-03-02 | prefix correction for secondary namespace | alwin | 2 | -14/+14 |
2004-03-02 | Bounce: libopie -> libopie2 | drw | 4 | -9/+10 |
2004-03-02 | Fifteen: libopie -> libopie2 | drw | 4 | -5/+5 |
2004-03-02 | drafts how namespaces in opie2 should be handled. | alwin | 2 | -0/+126 |
2004-03-02 | Backgammon: libopie -> libopie2 | drw | 4 | -4/+4 |
2004-03-02 | Minesweep: libopie -> libopie2 | drw | 4 | -7/+7 |
2004-03-02 | Patience: libopie -> libopie2 | drw | 4 | -4/+4 |
2004-03-02 | ZSame: libopie -> libopie2 | drw | 4 | -7/+7 |
2004-03-02 | Snake: libopie -> libopie2 | drw | 4 | -4/+4 |
2004-03-02 | QAsteroids: libopie -> libopie2 | drw | 4 | -4/+4 |
2004-03-02 | Go: libopie -> libopie2 | drw | 4 | -4/+4 |
2004-03-02 | Fix key handling bug 1268 | zecke | 1 | -45/+34 |
2004-03-02 | DrawPad: libopie -> libopie2 | drw | 9 | -21/+21 |
2004-03-02 | libopie1->libopie2, segfaulting | harlekin | 6 | -22/+24 |
2004-03-02 | libopie1->libopie2 | harlekin | 2 | -2/+2 |
2004-03-02 | fix so it will compile with gcc2 toolchain | alwin | 1 | -1/+2 |
2004-03-02 | -rpath -> -rpath-link | alwin | 1 | -1/+1 |
ToDo: I think, we should do that for all other used mkspecs. | ||||
2004-03-02 | hack so it compiles with gcc2 toolchain | alwin | 1 | -0/+4 |
2004-03-02 | failure while linking due a typo (please - check your changes before | alwin | 1 | -1/+1 |
commit) | ||||
2004-03-02 | -rpath -> -rpath-link | alwin | 1 | -1/+1 |
it makes more sense when crosscompiling (tnx mickeyl for that hint) | ||||
2004-03-02 | enable chosing libslcompat | mickeyl | 1 | -0/+1 |
2004-03-02 | d'oh! did i never commit this? | mickeyl | 1 | -1/+1 |
2004-03-02 | remove dead corpse | mickeyl | 1 | -10/+0 |
2004-03-02 | reorder includes, printf-->qdebug, reformat source | mickeyl | 1 | -46/+53 |
2004-03-02 | Today fortune plugin: libopie -> libopie2 | drw | 8 | -21/+18 |
2004-03-02 | Minor depends update | drw | 1 | -1/+1 |
2004-03-02 | Today stock ticker plugin: libopie -> libopie2 | drw | 11 | -45/+43 |
2004-03-02 | Added OTicker class to libopie2 | drw | 3 | -10/+288 |
2004-03-02 | fix includes | chicken | 23 | -51/+1 |
2004-03-02 | Today weather plugin: libopie -> libopie2 | drw | 8 | -18/+17 |
2004-03-02 | Added #include <qwidget.h> | drw | 1 | -0/+1 |
2004-03-02 | revert effects of fixincludes | mickeyl | 1 | -0/+1 |
2004-03-02 | OpieRec: libopie -> libopie2 | drw | 4 | -6/+8 |
2004-03-02 | ShowImg: libopie -> libopie2 | drw | 5 | -10/+11 |
2004-03-02 | Fix missed libopie include | drw | 2 | -3/+2 |
2004-03-02 | fix includes | chicken | 34 | -110/+1 |
2004-03-02 | fixed up todlist to work again. The segfault resulted due a real ugly ↵ | alwin | 3 | -7/+5 |
code-style: Never, realy never, use "using namespace <...>" inside a include file. Ever use "Opie::<class>" or such inside include files. Think twice, before using a "use namespace <...>" inside a c++ file. If you're using it just 3,4 times, write "Opie::<class>::<variable>" or such. If you just simple write a using namespace all the time it makes the idea of namespaces obsolete. Mostly: just integrate your OWN namespace (in that case use namespace Todo;) - but try to use all other namespaces the explicit way - so you will sure that the compiler inherits the right methods. ToDo: write this statement into the developer wiki |