3 Topics

Member Avatar for
Member Avatar for cyon

I was told in an email to revise a document and submit the revised document "in clean and track change version." Not knowing what this meant, I asked for clarification and the sender explained that "track changes shows the change you made and a clean copy means you have accepted …

Member Avatar for cyon
0
295
Member Avatar for annitaz

#include <QApplication> #include <QLabel> #include <QVBoxLayout> #include <QTextEdit> #include <QWidget> int main (int argc, char* argv[]) { QApplication app (argc, argv); QWidget window; QLabel* label = new QLabel("Please enter some text"); QTextEdit* textEdit = new QTextEdit; QVBoxLayout* layout = new QVBoxLayout; layout->addwidget(label); layout->addwidget(textEdit); window.setLayout(layout); window.show; return app.exec(); } 1.Qt provides …

0
117
Member Avatar for xfbs

Hi Everyone! Just wondering: how many people here use [URL="http://github.com/"]GitHub[/URL]? I've been on it for maybe half a year now and I find it quite useful. What experience do you guys have with git? Cheers, xfbs

Member Avatar for peter_budo
0
252

The End.