summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2016-01-08 13:53:13 +1100
committerChris Sherlock <chris.sherlock79@gmail.com>2016-01-08 14:04:16 +1100
commitc89f9b19cefd08b31b6e5dfa55ea0f4ff757da9c (patch)
tree2deb5f06cce1486ba6d8f708ab701f925bd1e648 /include
parent9321c560943330fbc76dacfebff67bd740fbc95b (diff)
vcl: silence doxygen warning
Change-Id: I132672582136abfcec0eeafd2400757def824dbf
Diffstat (limited to 'include')
-rw-r--r--include/vcl/builder.hxx2
-rw-r--r--include/vcl/opengl/OpenGLContext.hxx2
-rw-r--r--include/vcl/outdev.hxx2
-rw-r--r--include/vcl/scheduler.hxx6
-rw-r--r--include/vcl/window.hxx2
5 files changed, 7 insertions, 7 deletions
diff --git a/include/vcl/builder.hxx b/include/vcl/builder.hxx
index 1b6cc1f34dff..b370b025a152 100644
--- a/include/vcl/builder.hxx
+++ b/include/vcl/builder.hxx
@@ -47,7 +47,7 @@ class VCL_DLLPUBLIC VclBuilder
{
public:
typedef std::map<OString, OString> stringmap;
- /// These functions create a new widget with parent @pParent and return it in @rRet
+ /// These functions create a new widget with parent pParent and return it in rRet
typedef void (*customMakeWidget)(VclPtr<vcl::Window> &rRet, VclPtr<vcl::Window> &pParent, stringmap &rVec);
public:
diff --git a/include/vcl/opengl/OpenGLContext.hxx b/include/vcl/opengl/OpenGLContext.hxx
index de22444d47d6..d5a9e3142173 100644
--- a/include/vcl/opengl/OpenGLContext.hxx
+++ b/include/vcl/opengl/OpenGLContext.hxx
@@ -177,7 +177,7 @@ public:
/// make a VCL context (any context) current, create it if necessary.
static void makeVCLCurrent();
- /// fetch any VCL context, creating one if @bMakeIfNecessary is set.
+ /// fetch any VCL context, creating one if bMakeIfNecessary is set.
static rtl::Reference<OpenGLContext> getVCLContext(bool bMakeIfNecessary = true);
/// make this GL context current - so it is implicit in subsequent GL calls
void makeCurrent();
diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx
index 53755d2534d3..a827fce091da 100644
--- a/include/vcl/outdev.hxx
+++ b/include/vcl/outdev.hxx
@@ -584,7 +584,7 @@ public:
///@}
- /** @Name Direct OutputDevice drawing functions
+ /** @name Direct OutputDevice drawing functions
*/
///@{
diff --git a/include/vcl/scheduler.hxx b/include/vcl/scheduler.hxx
index 8e75f33de155..f3d14f7c8d3e 100644
--- a/include/vcl/scheduler.hxx
+++ b/include/vcl/scheduler.hxx
@@ -51,13 +51,13 @@ protected:
friend struct ImplSchedulerData;
virtual void SetDeletionFlags();
- /// Is this item ready to be dispatched at @nTimeNow
+ /// Is this item ready to be dispatched at nTimeNow
virtual bool ReadyForSchedule( bool bTimerOnly, sal_uInt64 nTimeNow ) const = 0;
/// Schedule only when other timers and events are processed
virtual bool IsIdle() const = 0;
/**
- * Adjust @nMinPeriod downwards if we want to be notified before
- * then, @nTimeNow is the current time.
+ * Adjust nMinPeriod downwards if we want to be notified before
+ * then, nTimeNow is the current time.
*/
virtual sal_uInt64 UpdateMinPeriod( sal_uInt64 nMinPeriod, sal_uInt64 nTimeNow ) const = 0;
diff --git a/include/vcl/window.hxx b/include/vcl/window.hxx
index aafb1d7d4005..a33d96518d46 100644
--- a/include/vcl/window.hxx
+++ b/include/vcl/window.hxx
@@ -1204,7 +1204,7 @@ public:
void SetData( void* pNewData );
void* GetData() const;
- /// Add all children to @rAllChildren recursively.
+ /// Add all children to rAllChildren recursively.
SAL_DLLPRIVATE void CollectChildren(::std::vector<vcl::Window *>& rAllChildren );
virtual void ShowFocus(const Rectangle& rRect);