summaryrefslogtreecommitdiffstats
path: root/cui
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2017-02-03 21:52:39 +0100
committerJulien Nabet <serval2412@yahoo.fr>2017-02-03 21:10:43 +0000
commitb4fe924e179bd04073f530713db3da792163a7ca (patch)
tree150436645deb407164bb0767a7cb4f306116827d /cui
parentTypos (diff)
downloadcore-b4fe924e179bd04073f530713db3da792163a7ca.tar.gz
core-b4fe924e179bd04073f530713db3da792163a7ca.zip
Typo: progess->progress
Change-Id: Ic13529f4bc9ac49059a59067c50d5f2c0f569822 Reviewed-on: https://gerrit.libreoffice.org/33902 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'cui')
-rw-r--r--cui/source/dialogs/cuigaldlg.cxx8
-rw-r--r--cui/source/inc/cuigaldlg.hxx4
2 files changed, 6 insertions, 6 deletions
diff --git a/cui/source/dialogs/cuigaldlg.cxx b/cui/source/dialogs/cuigaldlg.cxx
index a8ec9ef2ed2a..8a545b1f7b25 100644
--- a/cui/source/dialogs/cuigaldlg.cxx
+++ b/cui/source/dialogs/cuigaldlg.cxx
@@ -59,11 +59,11 @@ using namespace ::com::sun::star::ui::dialogs;
using namespace ::com::sun::star::uno;
-SearchThread::SearchThread( SearchProgress* pProgess,
+SearchThread::SearchThread( SearchProgress* pProgress,
TPGalleryThemeProperties* pBrowser,
const INetURLObject& rStartURL ) :
Thread ( "cuiSearchThread" ),
- mpProgress ( pProgess ),
+ mpProgress ( pProgress ),
mpBrowser ( pBrowser ),
maStartURL ( rStartURL )
{
@@ -255,12 +255,12 @@ void SearchProgress::StartExecuteModal( const Link<Dialog&,void>& rEndDialogHdl
TakeThread::TakeThread(
- TakeProgress* pProgess,
+ TakeProgress* pProgress,
TPGalleryThemeProperties* pBrowser,
TokenList_impl& rTakenList
) :
Thread ( "cuiTakeThread" ),
- mpProgress ( pProgess ),
+ mpProgress ( pProgress ),
mpBrowser ( pBrowser ),
mrTakenList ( rTakenList )
{
diff --git a/cui/source/inc/cuigaldlg.hxx b/cui/source/inc/cuigaldlg.hxx
index 07f26fdc021f..dcef86db5030 100644
--- a/cui/source/inc/cuigaldlg.hxx
+++ b/cui/source/inc/cuigaldlg.hxx
@@ -73,7 +73,7 @@ private:
public:
- SearchThread( SearchProgress* pProgess,
+ SearchThread( SearchProgress* pProgress,
TPGalleryThemeProperties* pBrowser,
const INetURLObject& rStartURL );
};
@@ -117,7 +117,7 @@ private:
public:
TakeThread(
- TakeProgress* pProgess,
+ TakeProgress* pProgress,
TPGalleryThemeProperties* pBrowser,
TokenList_impl& rTakenList
);