diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2011-03-29 14:04:20 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2011-03-29 15:34:20 -0500 |
commit | c74cb0140dba427d5b54d2a983a84270021d71ee (patch) | |
tree | 3b96ab5ba569500fbb814298597295b5a698bd73 | |
parent | 84a75d7f8fab6a8c1f61764a5809ea744a5197b1 (diff) |
cosmetic comments change regarding using --xxx instead of -xxx
-rwxr-xr-x | framework/qa/complex/broken_document/LoadDocument.java | 2 | ||||
-rwxr-xr-x | framework/source/services/autorecovery.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/framework/qa/complex/broken_document/LoadDocument.java b/framework/qa/complex/broken_document/LoadDocument.java index f5d41c1e02b1..6825c5f6e1f2 100755 --- a/framework/qa/complex/broken_document/LoadDocument.java +++ b/framework/qa/complex/broken_document/LoadDocument.java @@ -62,7 +62,7 @@ public class LoadDocument { // } /** - * Start Office with "-headless" parameter, then + * Start Office with "--headless" parameter, then * load the broken document "dbf.dbf.emf", that brings a message box up in * the ui, see if the headless mode of SOffice changes. */ diff --git a/framework/source/services/autorecovery.cxx b/framework/source/services/autorecovery.cxx index 67ac4381418b..e61ae11c6bd6 100755 --- a/framework/source/services/autorecovery.cxx +++ b/framework/source/services/autorecovery.cxx @@ -840,7 +840,7 @@ void SAL_CALL AutoRecovery::changesOccurred(const css::util::ChangesEvent& aEven WriteGuard aWriteLock(m_aLock); // Changes of the configuration must be ignored if AutoSave/Recovery was disabled for this - // office session. That can happen if e.g. the command line arguments "-norestore" or "-headless" + // office session. That can happen if e.g. the command line arguments "--norestore" or "--headless" // was set. if ((m_eJob & AutoRecovery::E_DISABLE_AUTORECOVERY) == AutoRecovery::E_DISABLE_AUTORECOVERY) return; @@ -1530,7 +1530,7 @@ IMPL_LINK(AutoRecovery, implts_timerExpired, void*, EMPTYARG) implts_stopTimer(); // The timer must be ignored if AutoSave/Recovery was disabled for this - // office session. That can happen if e.g. the command line arguments "-norestore" or "-headless" + // office session. That can happen if e.g. the command line arguments "--norestore" or "--headless" // was set. But normaly the timer was disabled if recovery was disabled ... // But so we are more "safe" .-) // SAFE -> ---------------------------------- |