1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-05-04 17:34:07 +02:00

Reformat (missing space after comma), minor code tweaks

This commit is contained in:
chylex 2016-09-02 13:34:41 +02:00
parent 45bdd95dc8
commit 31a475861b
46 changed files with 287 additions and 287 deletions
Configuration
Core

View File

@ -4,7 +4,7 @@
using System.Threading;
namespace TweetDck.Configuration{
class LockManager{
sealed class LockManager{
public Process LockingProcess { get; private set; }
private readonly string file;

View File

@ -2,7 +2,7 @@
using System.Windows.Forms;
namespace TweetDck.Core.Controls{
public partial class FlatProgressBar : ProgressBar{
sealed partial class FlatProgressBar : ProgressBar{
private readonly SolidBrush brush;
public FlatProgressBar(){

View File

@ -12,7 +12,7 @@ protected static UserConfig Config{
public bool Ready { get; set; }
public BaseTabSettings(){
Padding = new Padding(6,6,6,6);
Padding = new Padding(6);
}
}
}