summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2014-02-06 21:22:42 +0100
committerJulien Nabet <serval2412@yahoo.fr>2014-02-06 21:22:42 +0100
commit6f0e7c36e436c66ed267ea446b7d640033bc3742 (patch)
tree88006cc5def5e5dfefe7c005438173fddfa0f8d9 /framework
parent668fefcea085f39a6fa610b93a712c5e250ccf1a (diff)
Typo: seam(s) -> seem(s)
Change-Id: I840d120644760b61a39ad88b4095056f0f753bb7
Diffstat (limited to 'framework')
-rw-r--r--framework/qa/complex/framework/autosave/Protocol.java2
-rw-r--r--framework/source/accelerators/acceleratorconfiguration.cxx4
-rw-r--r--framework/source/dispatch/dispatchprovider.cxx2
-rw-r--r--framework/source/dispatch/interceptionhelper.cxx2
-rw-r--r--framework/source/fwe/classes/framelistanalyzer.cxx2
-rw-r--r--framework/source/fwe/helper/titlehelper.cxx4
-rw-r--r--framework/source/loadenv/loadenv.cxx2
-rw-r--r--framework/source/services/autorecovery.cxx12
-rw-r--r--framework/source/services/pathsettings.cxx4
9 files changed, 17 insertions, 17 deletions
diff --git a/framework/qa/complex/framework/autosave/Protocol.java b/framework/qa/complex/framework/autosave/Protocol.java
index 295ed182ef9d..8c92b091f6fc 100644
--- a/framework/qa/complex/framework/autosave/Protocol.java
+++ b/framework/qa/complex/framework/autosave/Protocol.java
@@ -496,7 +496,7 @@ public class Protocol extends JComponent
* log an unspecified message.
*
* Sometimes it's not necessary to set a special type for an message.
- * The pure message seams to be enough. The type of such "pure messages"
+ * The pure message seems to be enough. The type of such "pure messages"
* will be set to INFO.
*
* @param sMessage
diff --git a/framework/source/accelerators/acceleratorconfiguration.cxx b/framework/source/accelerators/acceleratorconfiguration.cxx
index b645b3b64100..d76fea6ae5f0 100644
--- a/framework/source/accelerators/acceleratorconfiguration.cxx
+++ b/framework/source/accelerators/acceleratorconfiguration.cxx
@@ -142,7 +142,7 @@ void SAL_CALL XMLBasedAcceleratorConfiguration::setKeyEvent(const css::awt::KeyE
(aKeyEvent.Modifiers == 0)
)
throw css::lang::IllegalArgumentException(
- OUString("Such key event seams not to be supported by any operating system."),
+ OUString("Such key event seems not to be supported by any operating system."),
static_cast< ::cppu::OWeakObject* >(this),
0);
@@ -689,7 +689,7 @@ void SAL_CALL XCUBasedAcceleratorConfiguration::setKeyEvent(const css::awt::KeyE
(aKeyEvent.Modifiers == 0)
)
throw css::lang::IllegalArgumentException(
- OUString("Such key event seams not to be supported by any operating system."),
+ OUString("Such key event seems not to be supported by any operating system."),
static_cast< ::cppu::OWeakObject* >(this),
0);
diff --git a/framework/source/dispatch/dispatchprovider.cxx b/framework/source/dispatch/dispatchprovider.cxx
index 7b5c74645ff5..8a6327d3d914 100644
--- a/framework/source/dispatch/dispatchprovider.cxx
+++ b/framework/source/dispatch/dispatchprovider.cxx
@@ -354,7 +354,7 @@ css::uno::Reference< css::frame::XDispatch > DispatchProvider::implts_queryFrame
{
css::uno::Reference< css::frame::XDispatchProvider > xParent( xFrame->getCreator(), css::uno::UNO_QUERY );
// Normaly if isTop() returned sal_False ... the parent frame MUST(!) exist ...
- // But it seams to be better to check that here to prevent us against an access violation.
+ // But it seems to be better to check that here to prevent us against an access violation.
if (xParent.is())
xDispatcher = xParent->queryDispatch(aURL, SPECIALTARGET_TOP, 0);
}
diff --git a/framework/source/dispatch/interceptionhelper.cxx b/framework/source/dispatch/interceptionhelper.cxx
index c782ec666b5d..37ff33e95d40 100644
--- a/framework/source/dispatch/interceptionhelper.cxx
+++ b/framework/source/dispatch/interceptionhelper.cxx
@@ -274,7 +274,7 @@ void SAL_CALL InterceptionHelper::disposing(const css::lang::EventObject& aEvent
// SAFE ->
aReadLock.lock();
if (!m_lInterceptionRegs.empty() )
- OSL_FAIL("There are some pending interceptor objects, which seams to be registered during (!) the destruction of a frame.");
+ OSL_FAIL("There are some pending interceptor objects, which seems to be registered during (!) the destruction of a frame.");
aReadLock.unlock();
// <- SAFE
#endif // ODL_DEBUG_LEVEL>0
diff --git a/framework/source/fwe/classes/framelistanalyzer.cxx b/framework/source/fwe/classes/framelistanalyzer.cxx
index 04124b03025f..aae1aa421e5d 100644
--- a/framework/source/fwe/classes/framelistanalyzer.cxx
+++ b/framework/source/fwe/classes/framelistanalyzer.cxx
@@ -256,7 +256,7 @@ void FrameListAnalyzer::impl_analyze()
}
catch (const css::lang::IndexOutOfBoundsException&)
{
- // stop copying if index seams to be wrong.
+ // stop copying if index seems to be wrong.
// This interface can't really guarantee its count for multithreaded
// environments. So it can occur!
}
diff --git a/framework/source/fwe/helper/titlehelper.cxx b/framework/source/fwe/helper/titlehelper.cxx
index 0e3a97bbcb52..e19a6792a2ec 100644
--- a/framework/source/fwe/helper/titlehelper.cxx
+++ b/framework/source/fwe/helper/titlehelper.cxx
@@ -103,11 +103,11 @@ OUString SAL_CALL TitleHelper::getTitle()
if (m_bExternalTitle)
return m_sTitle;
- // Title seams to be up-to-date. Return it directly.
+ // Title seems to be up-to-date. Return it directly.
if (!m_sTitle.isEmpty())
return m_sTitle;
- // Title seams to be unused till now ... do bootstraping
+ // Title seems to be unused till now ... do bootstraping
impl_updateTitle (true);
return m_sTitle;
diff --git a/framework/source/loadenv/loadenv.cxx b/framework/source/loadenv/loadenv.cxx
index c43748cd975f..7aa849a6745d 100644
--- a/framework/source/loadenv/loadenv.cxx
+++ b/framework/source/loadenv/loadenv.cxx
@@ -1549,7 +1549,7 @@ css::uno::Reference< css::frame::XFrame > LoadEnv::impl_searchRecycleTarget()
if (eOldApp != eNewApp)
return css::uno::Reference< css::frame::XFrame >();
- // OK this task seams to be usable for recycling
+ // OK this task seems to be usable for recycling
// But we should mark it as such - means set an action lock.
// Otherwise it would be used more then ones or will be destroyed
// by a close() or terminate() request.
diff --git a/framework/source/services/autorecovery.cxx b/framework/source/services/autorecovery.cxx
index d9b86dccc351..6ec5d43ae3f7 100644
--- a/framework/source/services/autorecovery.cxx
+++ b/framework/source/services/autorecovery.cxx
@@ -304,7 +304,7 @@ public:
//-------------------------------
/** For every user action, which modifies a document (e.g. key input) we get
- a notification as XModifyListener. That seams to be a "performance issue" .-)
+ a notification as XModifyListener. That seems to be a "performance issue" .-)
So we decided to listen for such modify events only for the time in which the document
was stored as temp. file and was not modified again by the user.
*/
@@ -1185,8 +1185,8 @@ static const char OPERATION_UPDATE[] = "update";
static const sal_Int32 MIN_DISCSPACE_DOCSAVE = 5; // [MB]
static const sal_Int32 MIN_DISCSPACE_CONFIGSAVE = 1; // [MB]
static const sal_Int32 RETRY_STORE_ON_FULL_DISC_FOREVER = 300; // not forever ... but often enough .-)
-static const sal_Int32 RETRY_STORE_ON_MIGHT_FULL_DISC_USEFULL = 3; // in case FULL DISC does not seam the real problem
-static const sal_Int32 GIVE_UP_RETRY = 1; // in case FULL DISC does not seam the real problem
+static const sal_Int32 RETRY_STORE_ON_MIGHT_FULL_DISC_USEFULL = 3; // in case FULL DISC does not seem the real problem
+static const sal_Int32 GIVE_UP_RETRY = 1; // in case FULL DISC does not seem the real problem
#define SAVE_IN_PROGRESS sal_True
#define SAVE_FINISHED sal_False
@@ -2276,7 +2276,7 @@ void AutoRecovery::implts_flushConfigItem(const AutoRecovery::TDocumentInfo& rIn
}
catch(const css::uno::Exception&)
{
- // a) FULL DISC seams to be the problem behind => show error and retry it forever (e.g. retry=300)
+ // a) FULL DISC seems to be the problem behind => show error and retry it forever (e.g. retry=300)
// b) unknown problem (may be locking problem) => reset RETRY value to more useful value(!) (e.g. retry=3)
// c) unknown problem (may be locking problem) + 1..2 repeating operations => throw the original exception to force generation of a stacktrace !
@@ -3001,7 +3001,7 @@ void AutoRecovery::implts_prepareSessionShutdown()
catch(const css::uno::Exception&)
{
// At least it's only a try to close these documents before anybody else it does.
- // So it seams to be possible to ignore any error here .-)
+ // So it seems to be possible to ignore any error here .-)
}
rInfo.Document.clear();
@@ -3288,7 +3288,7 @@ void AutoRecovery::implts_saveOneDoc(const OUString&
{
bError = sal_True;
- // a) FULL DISC seams to be the problem behind => show error and retry it forever (e.g. retry=300)
+ // a) FULL DISC seems to be the problem behind => show error and retry it forever (e.g. retry=300)
// b) unknown problem (may be locking problem) => reset RETRY value to more useful value(!) (e.g. retry=3)
// c) unknown problem (may be locking problem) + 1..2 repeating operations => throw the original exception to force generation of a stacktrace !
diff --git a/framework/source/services/pathsettings.cxx b/framework/source/services/pathsettings.cxx
index dad1a43746d3..f551f29e155b 100644
--- a/framework/source/services/pathsettings.cxx
+++ b/framework/source/services/pathsettings.cxx
@@ -420,7 +420,7 @@ private:
PathSettings::PathInfo* impl_getPathAccess (sal_Int32 nHandle);
const PathSettings::PathInfo* impl_getPathAccessConst(sal_Int32 nHandle) const;
- /** it checks, if the given path value seams to be a valid URL or system path. */
+ /** it checks, if the given path value seems to be a valid URL or system path. */
sal_Bool impl_isValidPath(const OUString& sPath) const;
sal_Bool impl_isValidPath(const OUStringList& lPath) const;
@@ -1438,7 +1438,7 @@ css::uno::Reference< css::util::XStringSubstitution > PathSettings::fa_getSubsti
// create the needed substitution service.
// We must replace all used variables inside readed path values.
// In case we can't do so ... the whole office can't work really.
- // That's why it seams to be OK to throw a RuntimeException then.
+ // That's why it seems to be OK to throw a RuntimeException then.
xSubst = css::util::PathSubstitution::create(m_xContext);
{ // SAFE ->