Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
ligan
/
DocX
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
Fixed MagicText (differented formats were not returned properly, because FormattedText was always compared to itself). Fix provided by Carko
master
MadBoy_cp
13 anni fa
parent
56987a533c
commit
b3946661dd
1 ha cambiato i file
con
1 aggiunte
e
1 eliminazioni
Visualizzazione separata
Mostra Diff Stats
1
1
DocX/FormattedText.cs
+ 1
- 1
DocX/FormattedText.cs
Vedi 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…
Annulla
Salva