Comment changes

p4#: 22507
This commit is contained in:
CeetronResInsight 2013-09-20 13:09:45 +02:00
parent 187aa697fd
commit 058a2354c5
14 changed files with 15 additions and 15 deletions

View File

@ -752,7 +752,7 @@ T Array<T>::max(size_t* index) const
///
/// \param other Modifiable reference to the array that should have its contents swapped.
///
/// \warning Note that signature differs from normal CeeVizFramework practice. This is done to be
/// \warning Note that signature differs from normal practice. This is done to be
/// consistent with the signature of std::swap()
//--------------------------------------------------------------------------------------------------
template <typename T>

View File

@ -23,7 +23,7 @@
#error No platform defined
#endif
// Global include file with definitions useful for all CeeVizFramework files
// Global include file with definitions useful for all library files
// Disable some annoying warnings so we can compile with warning level Wall
#ifdef WIN32

View File

@ -18,12 +18,12 @@
//##################################################################################################
// Doxygen module definition
/// \ingroup CeeVizFramework
/// \ingroup VizFramework
/// @{
/// \defgroup Core Core module
/// @}
/// \defgroup CeeVizFramework CeeViz Framework Basis
/// \defgroup VizFramework Framework Basis
// Intentionally on top to be included first
#include "cvfBase.h"

View File

@ -354,7 +354,7 @@ bool ref<T>::operator<(const ref& rhs) const
/// Swap the associated pointer in this and the passed ref object. Will not modify the reference
/// count of any of the associated objects.
///
/// \warning Note that signature differs from normal CeeVizFramework practice. This is done to be
/// \warning Note that signature differs from normal practice. This is done to be
/// consistent with the signature of std::swap()
//--------------------------------------------------------------------------------------------------
template<typename T>

View File

@ -1533,7 +1533,7 @@ String String::arg(double a, int fieldWidth, char format, int precision, const w
///
/// \param other Modifiable reference to the string that should have its contents swapped.
///
/// \warning Note that signature differs from normal CeeVizFramework practice. This is done to be
/// \warning Note that signature differs from normal practice. This is done to be
/// consistent with the signature of std::swap()
//--------------------------------------------------------------------------------------------------
void String::swap(String& other)

View File

@ -19,7 +19,7 @@
// Doxygen module definition
/// \ingroup CeeVizFramework
/// \ingroup VizFramework
/// @{
/// \defgroup Geometry Geometry module
/// @}

View File

@ -53,7 +53,7 @@ CvfBoundQGLContext::~CvfBoundQGLContext()
{
// TODO
// Need to resolve the case where the Qt QGLcontext (that we're deriving from) is deleted
// and CeeViz is still holding a reference to one or more OpenGLContext objects
// and we are still holding a reference to one or more OpenGLContext objects
// By the time we get here we expect that we're holding the only reference
CVF_ASSERT(m_cvfGLContext->refCount() == 1);
m_cvfGLContext = NULL;

View File

@ -28,7 +28,7 @@ namespace cvfqt {
//==================================================================================================
//
// Utility class used to piggyback our CeeViz OpenGLContext onto Qt's QGLContext
// Utility class used to piggyback OpenGLContext onto Qt's QGLContext
//
//==================================================================================================
class CvfBoundQGLContext : public QGLContext

View File

@ -32,7 +32,7 @@ namespace cvfqt {
/// \class cvfqt::Utils
/// \ingroup GuiQt
///
/// Static helper class for CeeViz/Qt interop
/// Static helper class for Qt interop
///
//==================================================================================================

View File

@ -28,7 +28,7 @@ namespace cvfqt {
//==================================================================================================
//
// Static helper class for CeeViz/Qt interop
// Static helper class for Qt interop
//
//==================================================================================================
class Utils

View File

@ -18,7 +18,7 @@
//##################################################################################################
// Doxygen module definition
/// \ingroup CeeVizFramework
/// \ingroup VizFramework
/// @{
/// \defgroup Render Render module
/// @}

View File

@ -132,7 +132,7 @@ void ConstantFrameRate::attachRendering(Rendering* rendering)
RenderQueueSorterTargetFramerate* rqs = new RenderQueueSorterTargetFramerate;
m_rendering->setRenderQueueSorter(rqs);
// Currently, we need to enable pixel size culling in order to get CeeViz to
// Currently, we need to enable pixel size culling in order to
// compute the screen projected areas of the part's bounding boxes
m_rendering->cullSettings()->enablePixelSizeCulling(true);

View File

@ -18,7 +18,7 @@
//##################################################################################################
// Doxygen module definition
/// \ingroup CeeVizFramework
/// \ingroup VizFramework
/// @{
/// \defgroup Viewing Viewing module
/// @}

View File

@ -318,7 +318,7 @@ void RenderSequence::preRenderApplyExpectedOpenGLState(OpenGLContext* oglContext
// These settings differ from OpenGL defaults,
// but form a suitable starting point for rendering with CeeViz
// but form a suitable starting point for rendering
// ------------------------------------------------
// TODO Work out a proper solution for this