More consistent naming for Qt-derived classes in CAF

This commit is contained in:
Gaute Lindkvist
2019-04-07 17:48:49 +02:00
parent 22880d511b
commit 4e92a7e44a
18 changed files with 43 additions and 43 deletions

View File

@@ -42,7 +42,7 @@
#include "cafPdmObject.h"
#include "cafPdmUiFieldEditorHandle.h"
#include "cafPdmUiOrdering.h"
#include "cafShortenedQLabel.h"
#include "cafQShortenedLabel.h"
#include "cafFactory.h"
@@ -98,7 +98,7 @@ QWidget* PdmUiCheckBoxEditor::createEditorWidget(QWidget* parent)
//--------------------------------------------------------------------------------------------------
QWidget* PdmUiCheckBoxEditor::createLabelWidget(QWidget* parent)
{
m_label = new ShortenedQLabel(parent);
m_label = new QShortenedLabel(parent);
return m_label;
}