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