[Xfce4-commits] [apps/xfce4-terminal] 01/01: Minimize memory usage of struct TerminalWindowAttr

noreply at xfce.org noreply at xfce.org
Thu Sep 29 12:59:47 CEST 2016


This is an automated email from the git hooks/post-receive script.

f2404 pushed a commit to branch master
in repository apps/xfce4-terminal.

commit 7f000b23d443a9eaf22e4062d321e33853b28463
Author: Igor <f2404 at yandex.ru>
Date:   Thu Sep 29 13:59:41 2016 +0300

    Minimize memory usage of struct TerminalWindowAttr
---
 terminal/terminal-options.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/terminal/terminal-options.h b/terminal/terminal-options.h
index f6d3c8d..f6d5bf8 100644
--- a/terminal/terminal-options.h
+++ b/terminal/terminal-options.h
@@ -62,7 +62,6 @@ typedef struct
 typedef struct
 {
   GSList              *tabs;
-  guint                drop_down : 1;
   gchar               *display;
   gchar               *geometry;
   gchar               *role;
@@ -70,13 +69,14 @@ typedef struct
   gchar               *sm_client_id;
   gchar               *icon;
   gchar               *font;
+  guint                drop_down : 1;
   guint                fullscreen : 1;
+  guint                maximize : 1;
+  guint                reuse_last_window : 1;
   TerminalVisibility   menubar;
   TerminalVisibility   borders;
   TerminalVisibility   toolbar;
   TerminalZoomLevel    zoom;
-  guint                maximize : 1;
-  guint                reuse_last_window : 1;
 } TerminalWindowAttr;
 
 void                terminal_options_parse     (gint                 argc,

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list