summaryrefslogtreecommitdiff
path: root/sd/source/ui
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui')
-rw-r--r--sd/source/ui/accessibility/AccessibleViewForwarder.cxx2
-rw-r--r--sd/source/ui/framework/configuration/ConfigurationUpdater.cxx4
-rw-r--r--sd/source/ui/framework/configuration/ResourceId.cxx2
-rw-r--r--sd/source/ui/slidesorter/inc/controller/SlsPageSelector.hxx2
-rw-r--r--sd/source/ui/toolpanel/ToolPanelViewShell.cxx2
-rw-r--r--sd/source/ui/view/drviews7.cxx4
-rw-r--r--sd/source/ui/view/outlnvsh.cxx2
-rw-r--r--sd/source/ui/view/sdwindow.cxx2
8 files changed, 10 insertions, 10 deletions
diff --git a/sd/source/ui/accessibility/AccessibleViewForwarder.cxx b/sd/source/ui/accessibility/AccessibleViewForwarder.cxx
index 72a0a40bcbdb..2b7dd5326925 100644
--- a/sd/source/ui/accessibility/AccessibleViewForwarder.cxx
+++ b/sd/source/ui/accessibility/AccessibleViewForwarder.cxx
@@ -86,7 +86,7 @@ Rectangle AccessibleViewForwarder::GetVisibleArea (void) const
-/** Tansform the given point into pixel coordiantes. After the the pixel
+/** Tansform the given point into pixel coordiantes. After the pixel
coordiantes of the window origin are added to make the point coordinates
absolute.
*/
diff --git a/sd/source/ui/framework/configuration/ConfigurationUpdater.cxx b/sd/source/ui/framework/configuration/ConfigurationUpdater.cxx
index 05c3ca0ad465..3219c7a45574 100644
--- a/sd/source/ui/framework/configuration/ConfigurationUpdater.cxx
+++ b/sd/source/ui/framework/configuration/ConfigurationUpdater.cxx
@@ -188,7 +188,7 @@ void ConfigurationUpdater::UpdateConfiguration (void)
mpBroadcaster->NotifyListeners(aEvent);
// Do the actual update. All exceptions are caught and ignored,
- // so that the the end of the update is notified always.
+ // so that the end of the update is notified always.
try
{
if (mnLockCount == 0)
@@ -347,7 +347,7 @@ void ConfigurationUpdater::CheckPureAnchors (
// Skip all resources that are no pure anchors.
if (xResource.is() && xResource->isAnchorOnly())
{
- // When xResource is not an anchor of the the next resource in
+ // When xResource is not an anchor of the next resource in
// the list then it is the anchor of no resource at all.
if (nIndex == nCount-1)
{
diff --git a/sd/source/ui/framework/configuration/ResourceId.cxx b/sd/source/ui/framework/configuration/ResourceId.cxx
index 84f82603a2a6..2c8a1362d243 100644
--- a/sd/source/ui/framework/configuration/ResourceId.cxx
+++ b/sd/source/ui/framework/configuration/ResourceId.cxx
@@ -262,7 +262,7 @@ OUString SAL_CALL
{
// Return the "private:resource/<type>/" prefix.
- // Get the the prefix that ends with the second "/".
+ // Get the prefix that ends with the second "/".
const OUString& rsResourceURL (maResourceURLs[0]);
sal_Int32 nPrefixEnd (rsResourceURL.indexOf(sal_Unicode('/'), 0));
if (nPrefixEnd >= 0)
diff --git a/sd/source/ui/slidesorter/inc/controller/SlsPageSelector.hxx b/sd/source/ui/slidesorter/inc/controller/SlsPageSelector.hxx
index db5fe2319d79..25a2c4d786f6 100644
--- a/sd/source/ui/slidesorter/inc/controller/SlsPageSelector.hxx
+++ b/sd/source/ui/slidesorter/inc/controller/SlsPageSelector.hxx
@@ -148,7 +148,7 @@ public:
const ::boost::shared_ptr<PageSelection>& rSelection,
const bool bUpdateCurrentPage = true);
- /** Call this method after the the model has changed to set the number
+ /** Call this method after the model has changed to set the number
of selected pages.
*/
void CountSelectedPages (void);
diff --git a/sd/source/ui/toolpanel/ToolPanelViewShell.cxx b/sd/source/ui/toolpanel/ToolPanelViewShell.cxx
index 4c4bd5dba7c9..a333556765e6 100644
--- a/sd/source/ui/toolpanel/ToolPanelViewShell.cxx
+++ b/sd/source/ui/toolpanel/ToolPanelViewShell.cxx
@@ -228,7 +228,7 @@ public:
*/
void DeactivatePanelByResource( const ::rtl::OUString& i_rPanelResourceURL );
- /** provides access to the the VCL window of the panel deck
+ /** provides access to the VCL window of the panel deck
*/
::sfx2::ModuleTaskPane& GetTaskPane() { return *m_pTaskPane; }
const ::sfx2::ModuleTaskPane& GetTaskPane() const { return *m_pTaskPane; }
diff --git a/sd/source/ui/view/drviews7.cxx b/sd/source/ui/view/drviews7.cxx
index f077d30fa589..b7ef1009238b 100644
--- a/sd/source/ui/view/drviews7.cxx
+++ b/sd/source/ui/view/drviews7.cxx
@@ -1673,7 +1673,7 @@ void DrawViewShell::GetState (SfxItemSet& rSet)
{
case SID_SEARCH_ITEM:
case SID_SEARCH_OPTIONS:
- // Forward this request to the the common (old) code of the
+ // Forward this request to the common (old) code of the
// document shell.
GetDocSh()->GetState (rSet);
break;
@@ -1699,7 +1699,7 @@ void DrawViewShell::Execute (SfxRequest& rReq)
switch (rReq.GetSlot())
{
case SID_SEARCH_ITEM:
- // Forward this request to the the common (old) code of the
+ // Forward this request to the common (old) code of the
// document shell.
GetDocSh()->Execute (rReq);
break;
diff --git a/sd/source/ui/view/outlnvsh.cxx b/sd/source/ui/view/outlnvsh.cxx
index 2703bf14e184..7e5e616abf36 100644
--- a/sd/source/ui/view/outlnvsh.cxx
+++ b/sd/source/ui/view/outlnvsh.cxx
@@ -1260,7 +1260,7 @@ void OutlineViewShell::Execute(SfxRequest& rReq)
break;
case SID_SEARCH_ITEM:
- // Forward this request to the the common (old) code of the
+ // Forward this request to the common (old) code of the
// document shell.
GetDocSh()->Execute (rReq);
bForwardCall = false;
diff --git a/sd/source/ui/view/sdwindow.cxx b/sd/source/ui/view/sdwindow.cxx
index 34da38d5d292..152f679e7eb3 100644
--- a/sd/source/ui/view/sdwindow.cxx
+++ b/sd/source/ui/view/sdwindow.cxx
@@ -468,7 +468,7 @@ long Window::SetZoomFactor(long nZoom)
// Update the map mode's origin (to what effect?).
UpdateMapOrigin();
- // Update the view's snapping to the the new zoom factor.
+ // Update the view's snapping to the new zoom factor.
if ( mpViewShell && mpViewShell->ISA(DrawViewShell) )
((DrawViewShell*) mpViewShell)->GetView()->
RecalcLogicSnapMagnetic(*this);