code cleanup

This commit is contained in:
Hylke Bons 2010-05-16 17:55:33 +01:00
parent a476c5eea2
commit 67584d4b14

View file

@ -26,15 +26,11 @@ namespace SparkleShare {
public class SparkleWindow : Window {
private SparkleRepo SparkleRepo;
public SparkleWindow (SparkleRepo Repo) : base ("") {
SparkleRepo = Repo;
SparkleRepo = Repo;
CreateWindow ();
}
@ -49,7 +45,6 @@ namespace SparkleShare {
VBox LayoutVertical = new VBox (false, 0);
HBox HBox = new HBox (true, 6);
HBox.PackStart (CreatePeopleList ());
HBox.PackStart (CreateEventLog ());
@ -70,7 +65,6 @@ namespace SparkleShare {
LayoutVertical.PackStart (DialogButtons, false, false, 0);
/* Timer RedrawTimer = new Timer ();
RedrawTimer.Interval = 5000;
RedrawTimer.Elapsed += delegate {
@ -316,7 +310,8 @@ namespace SparkleShare {
SparkleHelpers.GetAvatar (UserEmail , 32));
PeopleStore.SetValue (PeopleIter, 1,
"<b>" + UserName + "</b>\n" +
"<span font_size=\"smaller\">" + UserEmail + "</span>");
"<span font_size=\"smaller\">" +
UserEmail + "</span>");
}