mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-05-19 08:34:08 +02:00
Move TweetDeckBridge to Core.Handling namespace
This commit is contained in:
parent
0d2681c5ba
commit
d89c51a1d3
@ -6,6 +6,7 @@
|
|||||||
using CefSharp;
|
using CefSharp;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
using TweetDick.Core.Handling;
|
||||||
|
|
||||||
namespace TweetDick.Core{
|
namespace TweetDick.Core{
|
||||||
public partial class FormBrowser : Form{
|
public partial class FormBrowser : Form{
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
namespace TweetDick.Core{
|
|
||||||
|
namespace TweetDick.Core.Handling{
|
||||||
class TweetDeckBridge{
|
class TweetDeckBridge{
|
||||||
private readonly FormBrowser form;
|
private readonly FormBrowser form;
|
||||||
|
|
||||||
@ -7,6 +8,10 @@ public TweetDeckBridge(FormBrowser form){
|
|||||||
this.form = form;
|
this.form = form;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void OpenSettingsMenu(){
|
||||||
|
MessageBox.Show("Settings");
|
||||||
|
}
|
||||||
|
|
||||||
public void Log(string data){
|
public void Log(string data){
|
||||||
System.Diagnostics.Debug.WriteLine(data);
|
System.Diagnostics.Debug.WriteLine(data);
|
||||||
}
|
}
|
@ -97,7 +97,7 @@
|
|||||||
<Compile Include="Core\FormBackgroundWork.Designer.cs">
|
<Compile Include="Core\FormBackgroundWork.Designer.cs">
|
||||||
<DependentUpon>FormBackgroundWork.cs</DependentUpon>
|
<DependentUpon>FormBackgroundWork.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Core\TweetDeckBridge.cs" />
|
<Compile Include="Core\Handling\TweetDeckBridge.cs" />
|
||||||
<Compile Include="Migration\FormMigrationQuestion.cs">
|
<Compile Include="Migration\FormMigrationQuestion.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
Loading…
Reference in New Issue
Block a user