Kaydet (Commit) f45ac62a authored tarafından Andrea Gelmini's avatar Andrea Gelmini Kaydeden (comit) Samuel Mehrbrodt

Fix typos

Change-Id: I89ff6d31662824d83961d6457b82db8d8031168c
Reviewed-on: https://gerrit.libreoffice.org/18977Reviewed-by: 's avatarSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Tested-by: 's avatarSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
üst e90848ed
......@@ -90,7 +90,7 @@ else
exit 0
fi
done
# handle all non mozilla browers below
# handle all non mozilla browsers below
# ..
fi
exit 1
......@@ -255,7 +255,7 @@ HRESULT STDMETHODCALLTYPE CInfoTip::GetInfoTip(DWORD /*dwFlags*/, wchar_t** ppws
msg += meta_info_accessor.getTagData( META_INFO_DESCRIPTION );
}
//display midified time formatted into locale representation.
//display modified time formatted into locale representation.
if ( iso8601_date_to_local_date(meta_info_accessor.getTagData(META_INFO_MODIFIED )).length() > 0)
{
if ( msg != EMPTY_STRING )
......
......@@ -78,7 +78,7 @@ public:
its internals to us. Only one of the two functors is called.
@param rpPaintLock
This paint lock is released after the whole asynchronous
procoess of rewinding the current effect is completed. It
process of rewinding the current effect is completed. It
prevents intermediate repaints that would show partial replay
of effects.
@param rSlideRewindFunctor
......
......@@ -475,7 +475,7 @@ private:
SlideSharedPtr mpPrefetchSlide;
/// slide to be prefetched: best candidate for upcoming slide
uno::Reference<drawing::XDrawPage> mxPrefetchSlide;
/// save the XDrawPagesSupplier to retieve polygons
/// save the XDrawPagesSupplier to retrieve polygons
uno::Reference<drawing::XDrawPagesSupplier> mxDrawPagesSupplier;
/// slide animation to be prefetched:
uno::Reference<animations::XAnimationNode> mxPrefetchAnimationNode;
......@@ -884,7 +884,7 @@ ActivitySharedPtr SlideShowImpl::createSlideTransition(
PolygonMap::iterator SlideShowImpl::findPolygons( uno::Reference<drawing::XDrawPage> const& xDrawPage)
{
// TODO(P2) : Optimze research in the map.
// TODO(P2): optimize research in the map.
PolygonMap::iterator aEnd = maPolygons.end();
for( auto aIter = maPolygons.begin();
aIter != aEnd;
......
......@@ -718,7 +718,7 @@ public:
*/
bool notifyCommandStopAudio( const boost::shared_ptr<AnimationNode>& rNode );
/** Botifies that a hyperlink has been clicked.
/** Notifies that a hyperlink has been clicked.
@return true, if this event was processed by
anybody. If false is returned, no handler processed
......
......@@ -211,7 +211,7 @@ namespace slideshow
/** Functor struct, for shape ordering
This defines a strict weak ordering of shapes, primary
sort key is the shape priority, and secondy sort key
sort key is the shape priority, and secondary sort key
the object ptr value. Most typical use is for
associative containers holding shapes (and which also
have to maintain something like a paint order).
......
......@@ -149,7 +149,7 @@ public:
void registerShapeClickEvent( const EventSharedPtr& rEvent,
const ShapeSharedPtr& rShape );
/** Registes an event that is fired when the current effects(s)
/** Registers an event that is fired when the current effects(s)
are skipped, .e.g. when the left mouse button is pressed.
Then, all registered events are fired and removed from this
queue. After firing, a next effect event is issued to this
......
......@@ -774,7 +774,7 @@ static inline void print_fullpaths(char* line)
int boost_count = 0;
int token_len;
const char * unpacked_end = 0; /* end of UnpackedTarget match (if any) */
/* for UnpackedTarget the target is GenC{,xx}Object, dont mangle! */
/* for UnpackedTarget the target is GenC{,xx}Object, don't mangle! */
int target_seen = 0;
token = line;
......
......@@ -29,7 +29,7 @@ namespace gb
/// file extension) from the root of their source repository.
PackagePart(String name, Path Source);
friend Package;
/// Returns a list of aboslute paths where files are copied to with the PackagePart class.
/// Returns a list of absolute paths where files are copied to with the PackagePart class.
/// This function needs to be defined in solenv/gbuild/target_names.mk so that it is available to everywhere.
static const List<Path> get_destinations();
......
......@@ -21,7 +21,7 @@
ABC
/* Standards --------------------------------------------------------------- */
/* Standards */
#define NOTHING
NOTHING
......@@ -50,7 +50,7 @@ MAC(A,B);
MAC(X,Y)
#endif // MAC
/* Recursions -------------------------------------------------------------- */
/* Recursions */
#define y x
#define x y
......@@ -73,7 +73,7 @@ args(t1, (args(t2, (x, y)))) // t1 (t2 (x, y))
#define __ ARGS
int foo __((int x)); // int foo (int x);
/* Concatinations ---------------------------------------------------------- */
/* Concatinations */
#define tail _Test
// Txt_##tail // Txt_##_Test
......@@ -91,14 +91,14 @@ CAT3( a, b ) // ab::ab
#define CAT2( var ) fix##var::fix##var
CAT2( a ) // fixa::fixa
/* Extrems ----------------------------------------------------------------- */
/* Extremes */
#define MAKE_X( name ) name##_Test
#define MAKE_Y( name ) MAKE_X( name##_Sym )
MAKE_Y( Txt ); // Txt_Sym_Test;
/* Extensions -------------------------------------------------------------- */
/* Extensions */
/*
#ident "(c)# Test.txt"
......@@ -109,10 +109,8 @@ MAKE_Y( Txt ); // Txt_Sym_Test;
char machine[6];
*/
/* Last bug ----------------------------------------------------------------- */
/* Last bug */
#define Cfstrcpy Cstrcpy
#define Cstrcpy( s1, s2 ) strcpy( s1, s2 )
Cfstrcpy(Par1,Par2 ) // blub( Par1, Par2 )
/* ---------------------------------------------------------------------- */
......@@ -344,7 +344,7 @@ void
/** If gatherargs passed a macro validating token, this token
must become valid here.
trp->tp+0 was checked in expandrow(), so we dont need to do it
trp->tp+0 was checked in expandrow(), so we don't need to do it
again here:
*/
for (i = 1; i < ntokc; i++)
......
......@@ -82,7 +82,7 @@ bool StgPage::IsPageGreater( const StgPage *pA, const StgPage *pB )
static sal_Int32 lcl_GetPageCount( sal_uLong nFileSize, short nPageSize )
{
// return (nFileSize >= 512) ? (nFileSize - 512) / nPageSize : 0;
// #i61980# reallife: last page may be incomplete, return number of *started* pages
// #i61980# real life: last page may be incomplete, return number of *started* pages
return (nFileSize >= 512) ? (nFileSize - 512 + nPageSize - 1) / nPageSize : 0;
}
......
......@@ -487,7 +487,7 @@ public:
bool m_bDirect; // the storage and its streams are opened in direct mode; for UCBStorages
// this means that the root storage does an autocommit when its external
// reference is destroyed
bool m_bIsRoot; // marks this storage as root storages that manages all oommits and reverts
bool m_bIsRoot; // marks this storage as root storages that manages all commits and reverts
bool m_bDirty; // ???
bool m_bIsLinked;
bool m_bListCreated;
......
......@@ -333,7 +333,7 @@ private:
* As the placement of caret positions depends very much on the context within which a node
* appears it is not trivial to find all caret positions and determine which follows which.
* In OpenOffice Math this is done by the SmCaretPosGraphBuildingVisitor. This visitor builds
* graph (an instnce of SmCaretPosGraph) over the caret positions. For details on how this
* graph (an instance of SmCaretPosGraph) over the caret positions. For details on how this
* graph is build, and how new methods should be implemented see SmCaretPosGraphBuildingVisitor.
*
* The result of the SmCaretPosGraphBuildingVisitor is a graph over the caret positions in a
......
......@@ -73,7 +73,7 @@ class SmDocShell;
*
* This class is used to represent a cursor in a formula, which can be used to manipulate
* an formula programmatically.
* @remarks This class is a very intimite friend of SmDocShell.
* @remarks This class is a very intimate friend of SmDocShell.
*/
class SmCursor{
public:
......@@ -133,7 +133,7 @@ public:
* Note: This method uses the parser to translate a command text into a
* tree, then it copies line entries from this tree into the current tree.
* Will not work for commands such as newline or ##, if position is in a matrix.
* This will work for stuff like "A intersection B". But stuff spaning multiple lines
* This will work for stuff like "A intersection B". But stuff spanning multiple lines
* or dependent on the context which position is placed in will not work!
*/
void InsertCommandText(const OUString& aCommandText);
......@@ -370,7 +370,7 @@ private:
/** Finish editing
*
* Finishes editing by parsing pLineList and inserting back into pParent at nParentIndex.
* This method also rebuilts the graph, annotates the selection, sets caret position and
* This method also rebuilds the graph, annotates the selection, sets caret position and
* Calls EndEdit.
*
* @remarks Please note that this method will delete pLineList, as the elements are taken.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment