]> Dogcows Code - chaz/openbox/commitdiff
fix
authorMikael Magnusson <mikachu@comhem.se>
Thu, 8 Jun 2006 11:37:51 +0000 (11:37 +0000)
committerMikael Magnusson <mikachu@comhem.se>
Thu, 8 Jun 2006 11:37:51 +0000 (11:37 +0000)
openbox/client.c

index ce1c417fd0f8f73303f4b243de8cb8c93123901b..a912acb4dcd2cd0d79e7365ebbfc189da9f0a58d 100644 (file)
@@ -206,17 +206,17 @@ void client_manage_all()
 
 /* This should possibly do something more interesting than just match
  * against WM_CLASS literally. */
-static ObAppSetting *get_settings(ObClient *client)
+static ObAppSettings *get_settings(ObClient *client)
 {
     GSList *a = config_per_app_settings;
 
     while (a) {
-        ObAppSetting *app = (ObAppSetting *) a->data;
+        ObAppSettings *app = (ObAppSettings *) a->data;
         
         if (!strcmp(app->name, client->name)) {
             ob_debug("Window matching: %s\n", app->name);
 
-            return (ObAppSetting *) a->data;
+            return app;
         }
 
         a = a->next;
@@ -232,7 +232,7 @@ void client_manage(Window window)
     XSetWindowAttributes attrib_set;
     XWMHints *wmhint;
     gboolean activate = FALSE;
-    ObAppSetting *settings;
+    ObAppSettings *settings;
 
     grab_server(TRUE);
 
This page took 0.026595 seconds and 4 git commands to generate.