summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-06-28 13:27:16 +0200
committerSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2018-06-28 14:37:39 +0200
commitc44668a6c12d35552dde8c6ebcc14feb2ffdd37d (patch)
treed95ee27a8e4c0045c16d3455fd062d1877496225
parenttdf#86612: statusbar: hide some elements if width is not sufficient (diff)
downloadcore-c44668a6c12d35552dde8c6ebcc14feb2ffdd37d.tar.gz
core-c44668a6c12d35552dde8c6ebcc14feb2ffdd37d.zip
Fix typos
Change-Id: I1b966b636f67a549718ca19c00c2820e8d168c7a Reviewed-on: https://gerrit.libreoffice.org/56589 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
-rw-r--r--embeddedobj/source/commonembedding/visobj.cxx2
-rw-r--r--libreofficekit/qa/gtktiledviewer/gtv-helpers.cxx2
-rw-r--r--libreofficekit/source/gtk/lokdocview.cxx2
-rw-r--r--unotools/source/i18n/resmgr.cxx2
4 files changed, 4 insertions, 4 deletions
diff --git a/embeddedobj/source/commonembedding/visobj.cxx b/embeddedobj/source/commonembedding/visobj.cxx
index 28df7ed0f583..968d3a584808 100644
--- a/embeddedobj/source/commonembedding/visobj.cxx
+++ b/embeddedobj/source/commonembedding/visobj.cxx
@@ -166,7 +166,7 @@ embed::VisualRepresentation SAL_CALL OCommonEmbeddedObject::getPreferredVisualRe
awt::Size aOrigSize = getVisualAreaSize(nAspect);
changeState(embed::EmbedStates::RUNNING);
const bool bIsChart = GetDocumentServiceName() == "com.sun.star.chart2.ChartDocument";
- // tdf#108643 unless its a chart, cause those are weird (#i103460#)
+ // tdf#108643 unless it's a chart, cause those are weird (#i103460#)
if (!bIsChart && aOrigSize != getVisualAreaSize(nAspect))
setVisualAreaSize(nAspect, aOrigSize);
diff --git a/libreofficekit/qa/gtktiledviewer/gtv-helpers.cxx b/libreofficekit/qa/gtktiledviewer/gtv-helpers.cxx
index d2fcb979e3d3..d810170dc675 100644
--- a/libreofficekit/qa/gtktiledviewer/gtv-helpers.cxx
+++ b/libreofficekit/qa/gtktiledviewer/gtv-helpers.cxx
@@ -101,7 +101,7 @@ GtkWidget* GtvHelpers::createCommentBox(const boost::property_tree::ptree& aComm
gchar *id = g_strndup(aComment.get<std::string>("id").c_str(), 20);
g_object_set_data_full(G_OBJECT(pCommentVBox), "id", id, g_free);
- // Set background if its a reply comment
+ // Set background if it's a reply comment
if (aComment.get("parent", -1) > 0)
{
GtkStyleContext* pStyleContext = gtk_widget_get_style_context(pCommentVBox);
diff --git a/libreofficekit/source/gtk/lokdocview.cxx b/libreofficekit/source/gtk/lokdocview.cxx
index e55592e9c1da..4589a46ffa6b 100644
--- a/libreofficekit/source/gtk/lokdocview.cxx
+++ b/libreofficekit/source/gtk/lokdocview.cxx
@@ -3227,7 +3227,7 @@ static void lok_doc_view_class_init (LOKDocViewClass* pClass)
* 'action' can be 'Add', 'Remove' or 'Modify' depending on whether
* comment has been added, removed or modified.
* 'parent' is a non-zero comment id if this comment is a reply comment,
- * otherwise its a root comment.
+ * otherwise it's a root comment.
*/
doc_view_signals[COMMENT] =
g_signal_new("comment",
diff --git a/unotools/source/i18n/resmgr.cxx b/unotools/source/i18n/resmgr.cxx
index f756575bc5bb..f93aaa00b226 100644
--- a/unotools/source/i18n/resmgr.cxx
+++ b/unotools/source/i18n/resmgr.cxx
@@ -208,7 +208,7 @@ namespace Translate
++pId;
}
- //if its a key id locale, generate it here
+ //if it's a key id locale, generate it here
if (std::use_facet<boost::locale::info>(loc).language() == "qtz")
{
OString sKeyId(genKeyId(OString(pContextAndId).replace('\004', '|')));