Skip to content

Commit 88a340f

Browse files
committed
Namespaces renamed
- DCSoft.RTF to RtfDomParser - DCSoft.RTF.Test to RtfDomParser.Test
1 parent 965fea5 commit 88a340f

50 files changed

Lines changed: 53 additions & 53 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Source/RtfDomParser.WinFormsDemo/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections.Generic;
33
using System.Windows.Forms;
44

5-
namespace DCSoft.RTF.Test
5+
namespace RtfDomParser.Test
66
{
77
static class Program
88
{

Source/RtfDomParser.WinFormsDemo/frmRTFTest.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Source/RtfDomParser.WinFormsDemo/frmRTFTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
using System.Drawing;
1414
using System.Text;
1515
using System.Windows.Forms;
16-
using DCSoft.RTF;
16+
using RtfDomParser;
1717

18-
namespace DCSoft.RTF.Test
18+
namespace RtfDomParser.Test
1919
{
2020
public partial class frmRTFTest : Form
2121
{
@@ -33,7 +33,7 @@ private void btnLoadRTF_Click(object sender, EventArgs e)
3333
if (dlg.ShowDialog(this) == DialogResult.OK)
3434
{
3535
this.Update();
36-
DCSoft.RTF.RTFDomDocument doc = new DCSoft.RTF.RTFDomDocument();
36+
RtfDomParser.RTFDomDocument doc = new RtfDomParser.RTFDomDocument();
3737
doc.Progress += new ProgressEventHandler(doc_Progress);
3838
doc.Load(dlg.FileName);
3939
txtRTFDom.Text = doc.ToDomString();

Source/RtfDomParser.WinFormsDemo/frmRTFTest.resx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@
409409
<value>0, 0</value>
410410
</data>
411411
<data name="$this.Text" xml:space="preserve">
412-
<value>DCSoft.RTF V1.0</value>
412+
<value>RtfDomParser V1.0</value>
413413
</data>
414414
<data name="&gt;&gt;tabPage1.Parent" xml:space="preserve">
415415
<value>tabControl1</value>

Source/RtfDomParser/ByteBuffer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
using System;
1111
using System.Windows.Forms;
1212

13-
namespace DCSoft.RTF
13+
namespace RtfDomParser
1414
{
1515
/// <summary>
1616
/// Binary data buffer

Source/RtfDomParser/DocumentFormatInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
using System.Drawing;
1313
using System.Drawing.Drawing2D;
1414

15-
namespace DCSoft.RTF
15+
namespace RtfDomParser
1616
{
1717
/// <summary>
1818
/// RTF Document format information
@@ -923,7 +923,7 @@ public void Reset()
923923
//using System;
924924
//using System.ComponentModel ;
925925

926-
//namespace DCSoft.RTF
926+
//namespace RtfDomParser
927927
//{
928928
// /// <summary>
929929
// /// RTF Document format information

Source/RtfDomParser/LevelNumberType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections.Generic;
33
using System.Text;
44

5-
namespace DCSoft.RTF
5+
namespace RtfDomParser
66
{
77
public enum LevelNumberType
88
{

Source/RtfDomParser/Parser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
using System;
1111
using System.Collections.Generic;
1212

13-
namespace DCSoft.RTF
13+
namespace RtfDomParser
1414
{
1515
/// <summary>
1616
/// RTF plain text container

Source/RtfDomParser/ProgressEventHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
using System;
1111
using System.Text;
1212

13-
namespace DCSoft.RTF
13+
namespace RtfDomParser
1414
{
1515
/// <summary>
1616
/// progress event handler type

Source/RtfDomParser/RTFAlignment.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
using System;
1313
using System.Text;
1414

15-
namespace DCSoft.RTF
15+
namespace RtfDomParser
1616
{
1717
/// <summary>
1818
/// text alignment

0 commit comments

Comments
 (0)