Rename rowpainter.* to RowPainter.*

This is the convention for files that define classes.
This commit is contained in:
Jean-Marc Lasgouttes 2014-07-25 21:55:08 +02:00
parent 41740ea915
commit b54deb3683
4 changed files with 6 additions and 6 deletions

View File

@ -168,7 +168,7 @@ SOURCEFILESCORE = \
ParIterator.cpp \ ParIterator.cpp \
PDFOptions.cpp \ PDFOptions.cpp \
Row.cpp \ Row.cpp \
rowpainter.cpp \ RowPainter.cpp \
Server.cpp \ Server.cpp \
ServerSocket.cpp \ ServerSocket.cpp \
sgml.cpp \ sgml.cpp \
@ -273,7 +273,7 @@ HEADERFILESCORE = \
ParIterator.h \ ParIterator.h \
PDFOptions.h \ PDFOptions.h \
Row.h \ Row.h \
rowpainter.h \ RowPainter.h \
Server.h \ Server.h \
ServerSocket.h \ ServerSocket.h \
Session.h \ Session.h \

View File

@ -1,5 +1,5 @@
/** /**
* \file rowpainter.cpp * \file RowPainter.cpp
* This file is part of LyX, the document processor. * This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING. * Licence details can be found in the file COPYING.
* *
@ -12,7 +12,7 @@
#include <config.h> #include <config.h>
#include <algorithm> #include <algorithm>
#include "rowpainter.h" #include "RowPainter.h"
#include "Buffer.h" #include "Buffer.h"
#include "CoordCache.h" #include "CoordCache.h"

View File

@ -1,6 +1,6 @@
// -*- C++ -*- // -*- C++ -*-
/** /**
* \file rowpainter.h * \file RowPainter.h
* This file is part of LyX, the document processor. * This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING. * Licence details can be found in the file COPYING.
* *

View File

@ -32,7 +32,7 @@
#include "LyXRC.h" #include "LyXRC.h"
#include "MetricsInfo.h" #include "MetricsInfo.h"
#include "ParagraphParameters.h" #include "ParagraphParameters.h"
#include "rowpainter.h" #include "RowPainter.h"
#include "Text.h" #include "Text.h"
#include "TextClass.h" #include "TextClass.h"
#include "VSpace.h" #include "VSpace.h"