This website works better with JavaScript.
Home
Explore
Help
Sign In
ligan
/
DocX
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Fixed MagicText (differented formats were not returned properly, because FormattedText was always compared to itself). Fix provided by Carko
master
MadBoy_cp
13 years ago
parent
56987a533c
commit
b3946661dd
1 changed files
with
1 additions
and
1 deletions
Split View
Show Diff Stats
1
1
DocX/FormattedText.cs
+ 1
- 1
DocX/FormattedText.cs
View File
@@ -19,7 +19,7 @@ namespace Novacode
public int CompareTo(object obj)
{
FormattedText other = (FormattedText)obj;
FormattedText tf =
(FormattedText)obj
;
FormattedText tf =
this
;
if (other.formatting == null || tf.formatting == null)
return -1;
Write
Preview
Loading…
Cancel
Save