]> git.armaanb.net Git - chorizo.git/blobdiff - src/browser.c
Standardize comment style
[chorizo.git] / src / browser.c
index 669ba60f295b1c4f66761fee4187eaf301be0664..995ee5ad8ce3e755471a521431a3694b54b16685 100644 (file)
@@ -256,7 +256,7 @@ client_new(const gchar *uri, WebKitWebView *related_wv, gboolean show,
     g_signal_connect(G_OBJECT(evbox), "scroll-event", G_CALLBACK(key_tablabel),
                      c);
 
-    /* For easy access, store a reference to our label. */
+    // For easy access, store a reference to our label.
     g_object_set_data(G_OBJECT(evbox), "chorizo-tab-label", c->tablabel);
 
     /* This only shows the event box and the label inside, nothing else.
@@ -310,8 +310,8 @@ cooperation_setup(void) {
         fprintf(stderr, __NAME__ ": Can't open FIFO at all.\n");
     } else {
         if (write(cooperative_pipe_fp, "", 0) == -1) {
-            /* Could not do an empty write to the FIFO which means
-      there's no one listening. */
+            /* Could not do an empty write to the FIFO which means there's no
+             * one listening. */
             close(cooperative_pipe_fp);
             towatch = g_io_channel_new_file(fifopath, "r+", NULL);
             g_io_add_watch(towatch, G_IO_IN, (GIOFunc)remote_msg, NULL);
@@ -474,7 +474,7 @@ decide_policy(WebKitWebView *web_view, WebKitPolicyDecision *decision,
             webkit_policy_decision_use(decision);
         break;
     default:
-        /* Use whatever default there is. */
+        // Use whatever default there is.
         return FALSE;
     }
     return TRUE;