1. Список говнокодов пользователя Sauron

    Всего: 11

  2. C++ / Говнокод #1559

    +8

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    //retrive the weather file
        QProcess* process = new QProcess(this);
        QString command = "wget -O " + QDir::homePath() + "/.weather.xml http://weather.yahooapis.com/forecastrss?p=" + zip;
    
        if(tempType == "C")
        {
           command.append("&u=c");
        }
        
        process->start(command);
        process->waitForFinished();
        delete process;

    Учитесь писать переносимый код!

    Sauron, 12 Августа 2009

    Комментарии (0)