Fix typo comments Resouce->Resource

Change-Id: Ia3195a21ad46b4c9830ee6293135dfe5945986a2
Reviewed-on: https://gerrit.libreoffice.org/13985
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
This commit is contained in:
Andrea Gelmini
2015-01-18 23:31:37 +01:00
committed by Noel Grandin
parent f9bea19eea
commit 07e84cae98
5 changed files with 7 additions and 7 deletions

View File

@@ -25,7 +25,7 @@ class MacroSnippet
{ {
private: private:
bool mbError; bool mbError;
BasicDLL maDll; // we need a dll instance for resouce manager etc. BasicDLL maDll; // we need a dll instance for resource manager etc.
SbModuleRef mpMod; SbModuleRef mpMod;
StarBASICRef mpBasic; StarBASICRef mpBasic;

View File

@@ -245,7 +245,7 @@ bool generatBinFromKernelSource( cl_program program, const char * clFileName )
} }
} }
// Release all resouces and memory // Release all resources and memory
for ( size_t i = 0; i < numDevices; i++ ) for ( size_t i = 0; i < numDevices; i++ )
{ {
delete[] binaries[i]; delete[] binaries[i];

View File

@@ -100,15 +100,15 @@ public:
virtual void SAL_CALL setTabIndex( sal_Int32 nTabIndex ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; virtual void SAL_CALL setTabIndex( sal_Int32 nTabIndex ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual ::sal_Int32 SAL_CALL getMousePointer() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; virtual ::sal_Int32 SAL_CALL getMousePointer() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL setMousePointer( ::sal_Int32 _mousepointer ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; virtual void SAL_CALL setMousePointer( ::sal_Int32 _mousepointer ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
//remove resouce because ooo.vba.excel.XControl is a wrapper of com.sun.star.drawing.XControlShape //remove resource because ooo.vba.excel.XControl is a wrapper of com.sun.star.drawing.XControlShape
virtual void removeResouce() throw( css::uno::RuntimeException ); virtual void removeResouce() throw( css::uno::RuntimeException );
virtual ::sal_Int32 SAL_CALL getForeColor() throw (::com::sun::star::uno::RuntimeException); virtual ::sal_Int32 SAL_CALL getForeColor() throw (::com::sun::star::uno::RuntimeException);
virtual void SAL_CALL setForeColor( ::sal_Int32 _forecolor ) throw (::com::sun::star::uno::RuntimeException); virtual void SAL_CALL setForeColor( ::sal_Int32 _forecolor ) throw (::com::sun::star::uno::RuntimeException);
//XHelperInterface //XHelperInterface
virtual OUString getServiceImplName() SAL_OVERRIDE; virtual OUString getServiceImplName() SAL_OVERRIDE;
virtual css::uno::Sequence<OUString> getServiceNames() SAL_OVERRIDE; virtual css::uno::Sequence<OUString> getServiceNames() SAL_OVERRIDE;
//General helper methods for properties ( may or maynot be relevant for all //General helper methods for properties (may or maynot be relevant for all
//controls //controls)
sal_Int32 getBackColor() throw (css::uno::RuntimeException); sal_Int32 getBackColor() throw (css::uno::RuntimeException);
void setBackColor( sal_Int32 nBackColor ) throw (css::uno::RuntimeException); void setBackColor( sal_Int32 nBackColor ) throw (css::uno::RuntimeException);
bool getAutoSize() throw (css::uno::RuntimeException); bool getAutoSize() throw (css::uno::RuntimeException);

View File

@@ -75,7 +75,7 @@ public class TableWizard extends DatabaseObjectWizard implements XTextListener
}); });
drawNaviBar(); drawNaviBar();
fielditems = new HashMap<String, FieldDescription>(); fielditems = new HashMap<String, FieldDescription>();
//TODO if reportResouces cannot be gotten dispose officedocument //TODO if reportResources cannot be gotten dispose officedocument
if (getTableResources()) if (getTableResources())
{ {
setRightPaneHeaders(m_oResource, UIConsts.RID_TABLE + 8, 4); setRightPaneHeaders(m_oResource, UIConsts.RID_TABLE + 8, 4);

View File

@@ -655,7 +655,7 @@ void XSecController::endMission()
/* /*
* askes the SignatureCreator/SignatureVerifier to release * askes the SignatureCreator/SignatureVerifier to release
* all resouces it uses. * all resources it uses.
*/ */
xMissionTaker->endMission(); xMissionTaker->endMission();
} }