commit 3a2eeeaf01822f35717c71cd7ded4e83bccbf132
parent c32a645954dba0f6a6185017a158cd84066c719c
Author: Alexander Kojevnikov <alexander@kojevnikov.com>
Date: Fri, 18 Mar 2011 15:51:09 +0800
Fix whitespace
Diffstat:
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/src/spek-message-bar.vala b/src/spek-message-bar.vala
@@ -24,17 +24,17 @@ using Gtk;
namespace Spek {
public class MessageBar : HBox {
private Label label;
- private Gtk.Window win;
+ private Gtk.Window win;
public MessageBar (string message) {
homogeneous = false;
spacing = 0;
border_width = 6;
- win = new Gtk.Window (WindowType.POPUP);
- win.name = "gtk-tooltips";
- win.ensure_style ();
- win.style_set.connect (() => style = win.style);
+ win = new Gtk.Window (WindowType.POPUP);
+ win.name = "gtk-tooltips";
+ win.ensure_style ();
+ win.style_set.connect (() => style = win.style);
label = new Label (null);
label.use_markup = true;
diff --git a/src/spek-platform.c b/src/spek-platform.c
@@ -65,11 +65,11 @@ void spek_platform_show_uri (const gchar *uri) {
#else
#ifdef G_OS_DARWIN
/* it doesn't work on OS X too */
- CFStringRef str = NULL;
- CFURLRef url = NULL;
+ CFStringRef str = NULL;
+ CFURLRef url = NULL;
- str = CFStringCreateWithCString (NULL, uri, kCFStringEncodingASCII);
- url = CFURLCreateWithString (NULL, str, NULL);
+ str = CFStringCreateWithCString (NULL, uri, kCFStringEncodingASCII);
+ url = CFURLCreateWithString (NULL, str, NULL);
LSOpenCFURLRef (url, NULL);
CFRelease (url);
CFRelease (str);