summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--android/source/src/java/org/libreoffice/FontController.java2
-rw-r--r--compilerplugins/clang/test/unusedfields.cxx6
2 files changed, 4 insertions, 4 deletions
diff --git a/android/source/src/java/org/libreoffice/FontController.java b/android/source/src/java/org/libreoffice/FontController.java
index 04fc6ccaa234..321b501e8891 100644
--- a/android/source/src/java/org/libreoffice/FontController.java
+++ b/android/source/src/java/org/libreoffice/FontController.java
@@ -152,7 +152,7 @@ public class FontController implements AdapterView.OnItemSelectedListener {
/*
* 0x00FFFFFF & color operation removes the alpha which is FF,
- * if we dont remove it, the color value becomes negative which is not recognized by LOK
+ * if we don't remove it, the color value becomes negative which is not recognized by LOK
*/
private void sendFontBackColorChange(int color){
try {
diff --git a/compilerplugins/clang/test/unusedfields.cxx b/compilerplugins/clang/test/unusedfields.cxx
index 21e59fcbbdd1..db71aeb199e4 100644
--- a/compilerplugins/clang/test/unusedfields.cxx
+++ b/compilerplugins/clang/test/unusedfields.cxx
@@ -57,10 +57,10 @@ struct Bar
// check that we don't see reads when inside copy/move assignment operator
Bar& operator=(Bar const & other) { m_bar3 = other.m_bar3; return *this; }
- // check that we DONT see reads here
+ // check that we DON'T see reads here
int bar2() { return m_bar2; }
- // check that we DONT see reads here
+ // check that we DON'T see reads here
void bar3()
{
m_bar3 = nullptr;
@@ -130,7 +130,7 @@ struct ReadOnlyAnalysis
int m_f5;
int m_f6;
- // check that we dont see a write of m_f1
+ // check that we don't see a write of m_f1
ReadOnlyAnalysis() : m_f1(0) {}
void method1(int&);