summaryrefslogtreecommitdiff
path: root/include/vcl
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-03-12 16:34:21 +0200
committerTor Lillqvist <tml@collabora.com>2014-03-13 08:40:59 +0200
commit50bd9482c72ab848c7336955a2b8f890b9cad5ab (patch)
tree92382e531982d5426356fe0f9ec95f993ce9e40c /include/vcl
parent78a2020846b855ed925ab88f06fa70a282a75e5a (diff)
Spelling fix: pined
Change-Id: I7e9e0a3c03e6158894787f6eb072bebdbee0fcad
Diffstat (limited to 'include/vcl')
-rw-r--r--include/vcl/dockwin.hxx14
-rw-r--r--include/vcl/syswin.hxx4
2 files changed, 9 insertions, 9 deletions
diff --git a/include/vcl/dockwin.hxx b/include/vcl/dockwin.hxx
index 7330209ced8d..21d7fd4822bb 100644
--- a/include/vcl/dockwin.hxx
+++ b/include/vcl/dockwin.hxx
@@ -110,7 +110,7 @@ private:
mbLastFloatMode:1,
mbStartFloat:1,
mbTrackDock:1,
- mbPined:1,
+ mbPinned:1,
mbRollUp:1,
mbDockBtn:1,
mbHideBtn:1,
@@ -255,7 +255,7 @@ private:
mbLastFloatMode:1,
mbStartFloat:1,
mbTrackDock:1,
- mbPined:1,
+ mbPinned:1,
mbRollUp:1,
mbDockBtn:1,
mbHideBtn:1;
@@ -301,7 +301,7 @@ public:
virtual void DataChanged( const DataChangedEvent& rDCEvt );
void SetPin( bool bPin );
- bool IsPined() const;
+ bool IsPinned() const;
void RollUp();
void RollDown();
@@ -347,14 +347,14 @@ inline void DockingWindow::SetPin( bool bPin )
{
if ( mpFloatWin )
mpFloatWin->SetPin( bPin );
- mbPined = bPin;
+ mbPinned = bPin;
}
-inline bool DockingWindow::IsPined() const
+inline bool DockingWindow::IsPinned() const
{
if ( mpFloatWin )
- return mpFloatWin->IsPined();
- return mbPined;
+ return mpFloatWin->IsPinned();
+ return mbPinned;
}
inline void DockingWindow::RollUp()
diff --git a/include/vcl/syswin.hxx b/include/vcl/syswin.hxx
index e63c5af24754..50bdd55b0c4a 100644
--- a/include/vcl/syswin.hxx
+++ b/include/vcl/syswin.hxx
@@ -143,7 +143,7 @@ private:
Size maOrgSize;
Size maRollUpOutSize;
Size maMinOutSize;
- bool mbPined;
+ bool mbPinned;
bool mbRollUp;
bool mbRollFunc;
bool mbDockBtn;
@@ -197,7 +197,7 @@ public:
bool IsTitleButtonVisible( sal_uInt16 nButton ) const;
void SetPin( bool bPin );
- bool IsPined() const { return mbPined; }
+ bool IsPinned() const { return mbPinned; }
void RollUp();
void RollDown();