Kaydet (Commit) 65a60e13 authored tarafından Andrea Gelmini's avatar Andrea Gelmini Kaydeden (comit) Julien Nabet

Fix typo

Change-Id: I87fa75d2aab64031426ce0560344908bd81d413c
Reviewed-on: https://gerrit.libreoffice.org/71816Reviewed-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
Tested-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
üst 5767c14e
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
This is a compile check. This is a compile check.
It checks for complex statements with conditional operators in conditional It checks for complex statements with conditional operators in conditional
operators, which are errorprone, e.g. operators, which are error prone, e.g.
Thing foo = IsBar() ? ( IsBaz() ? b1 : b2 ) : b3; Thing foo = IsBar() ? ( IsBaz() ? b1 : b2 ) : b3;
However, it finds 556 cases in sw/source alone, thus likely needs some more However, it finds 556 cases in sw/source alone, thus likely needs some more
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
This is a compile check. This is a compile check.
It checks for complex statements with conditional operators in conditional It checks for complex statements with conditional operators in conditional
operators, which are errorprone, e.g. operators, which are error prone, e.g.
Thing foo = IsBar() ? ( IsBaz() ? b1 : b2 ) : b3; Thing foo = IsBar() ? ( IsBaz() ? b1 : b2 ) : b3;
However, it finds 556 cases in sw/source alone, thus likely needs some more However, it finds 556 cases in sw/source alone, thus likely needs some more
......
...@@ -209,7 +209,7 @@ namespace sw ...@@ -209,7 +209,7 @@ namespace sw
/** Provide a dynamic_cast style cast for SfxPoolItems /** Provide a dynamic_cast style cast for SfxPoolItems
A SfxPoolItem generally need to be cast back to its original type A SfxPoolItem generally need to be cast back to its original type
to be useful, which is both tedious and errorprone. So item_cast is to be useful, which is both tedious and error prone. So item_cast is
a helper template to aid the process and test if the cast is a helper template to aid the process and test if the cast is
correct. correct.
......
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