summaryrefslogtreecommitdiff
path: root/src/ui/tabpopup.c
diff options
context:
space:
mode:
authorrbuj <[email protected]>2020-08-04 10:39:44 +0200
committerraveit65 <[email protected]>2020-08-04 16:39:25 +0200
commit85a22e754cd1f43e178e4a81c182643d4319bc5b (patch)
treeec52f20880ba991d7abcc863de2a9c302ddf2d41 /src/ui/tabpopup.c
parent29f0d1d7ddd859433bf953fba3861a4746b3f09a (diff)
downloadmarco-85a22e754cd1f43e178e4a81c182643d4319bc5b.tar.bz2
marco-85a22e754cd1f43e178e4a81c182643d4319bc5b.tar.xz
Remove trailing spaces/tabs
find . \( -name '*.h' -o -name '*.c' \) -exec sed -i 's/[[:space:]]*$//' {} \; find . \( -name '*.h' -o -name '*.c' \) -exec sed -i 's/\t*$//' {} \;
Diffstat (limited to 'src/ui/tabpopup.c')
-rw-r--r--src/ui/tabpopup.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ui/tabpopup.c b/src/ui/tabpopup.c
index fe7107dd..e5cd8736 100644
--- a/src/ui/tabpopup.c
+++ b/src/ui/tabpopup.c
@@ -603,12 +603,12 @@ static void
display_widget (MetaTabPopup *popup,
GtkWidget *w)
{
- if (w != NULL)
+ if (w != NULL)
{
GList *c = popup->entries;
while (c != NULL && ((TabEntry*)c->data)->widget != w)
c = c->next;
- if (c != NULL)
+ if (c != NULL)
{
popup->current = c;
TabEntry *te = c->data;
@@ -623,7 +623,7 @@ meta_ui_tab_popup_down (MetaTabPopup *popup)
if (popup->current != NULL)
{
TabEntry *te = popup->current->data;
- GtkWidget* w = gtk_grid_get_child_at (GTK_GRID(popup->grid),
+ GtkWidget* w = gtk_grid_get_child_at (GTK_GRID(popup->grid),
te->grid_left,
te->grid_top + 1);
display_widget (popup, w);
@@ -636,7 +636,7 @@ meta_ui_tab_popup_up (MetaTabPopup *popup)
if (popup->current != NULL)
{
TabEntry *te = popup->current->data;
- GtkWidget* w = gtk_grid_get_child_at (GTK_GRID(popup->grid),
+ GtkWidget* w = gtk_grid_get_child_at (GTK_GRID(popup->grid),
te->grid_left,
te->grid_top - 1);
display_widget (popup, w);