You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
710 B
36 lines
710 B
/**
|
|
* #(@)sourceeditor.cpp ENSICAEN 2005
|
|
*
|
|
* @author MASSE Nicolas (2005-Groupe3-LIMIN) <nicolas27.masse@laposte.net>
|
|
* @author LIMIN Thomas (2005-Groupe3-MASSE) <thomas.limin@laposte.net>
|
|
*
|
|
* ENSICAEN
|
|
* 6 Boulevard Marechal Juin
|
|
* F-14050 Caen Cedex
|
|
*
|
|
* Ce fichier est l'oeuvre d'eleves de l'ENSI de Caen. Il ne peut etre
|
|
* reproduit, utilise ou modifie sans l'avis express de ses auteurs.
|
|
*/
|
|
|
|
/*
|
|
* @version 0.0.1
|
|
*
|
|
* @done -
|
|
*
|
|
* @todo -
|
|
*/
|
|
|
|
|
|
|
|
#include "sourceeditor.h"
|
|
|
|
SourceEditor::SourceEditor(QWidget *parent, const char *name)
|
|
: QTextEdit(parent, name) {
|
|
|
|
this->setTextFormat(Qt::PlainText);
|
|
}
|
|
|
|
|
|
SourceEditor::~SourceEditor() {}
|
|
|
|
|
|
|