]> git.pld-linux.org Git - packages/DFBTerm.git/commitdiff
- obsolete
authorJakub Bogusz <qboosh@pld-linux.org>
Sun, 11 Mar 2007 19:43:14 +0000 (19:43 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    DFBTerm-update.patch -> 1.2

DFBTerm-update.patch [deleted file]

diff --git a/DFBTerm-update.patch b/DFBTerm-update.patch
deleted file mode 100644 (file)
index 25f2ac4..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
---- DFBTerm-0.8.0/src/term.c.orig      2005-02-14 22:09:49.000000000 +0100
-+++ DFBTerm-0.8.0/src/term.c   2005-10-23 19:56:33.716629856 +0200
-@@ -153,6 +153,7 @@
-      IDirectFBSurface       *surface;
-      IDirectFBEventBuffer   *buffer;
-      IDirectFBFont          *font;
-+     DFBRectangle           win_rect;
-      struct _vtx            *vtx;
-      Term                   *term;
-      char                   *command    = NULL;
-@@ -271,11 +272,12 @@
-      term->height = term->CH * termheight;
-      /* Create window */
--     term->lw = lite_new_window (NULL, 
--                                LITE_CENTER_HORIZONTALLY,
--                                LITE_CENTER_VERTICALLY,
--                                term->width+2, term->height,
--                                 DWCAPS_ALPHACHANNEL, "Terminal");
-+     win_rect.x = LITE_CENTER_HORIZONTALLY;
-+     win_rect.y = LITE_CENTER_VERTICALLY;
-+     win_rect.w = term->width+2;
-+     win_rect.h = term->height;
-+     ret = lite_new_window (NULL, &win_rect,
-+                                 DWCAPS_ALPHACHANNEL, liteDefaultWindowTheme, "Terminal", &term->lw);
-      if (!term->lw) {
-           lite_close();
-           dfb->Release (dfb);
-@@ -792,7 +794,7 @@
-      if (term->modifiers & DIMM_ALT) /* meta? */
-           qual |= 8;
--     if (lite_theme_loaded()) {
-+     if (lite_default_window_theme_loaded()) {
-           evt->x -= 5;
-           evt->y -= 23;
-      }
-@@ -917,7 +919,7 @@
- {
-      struct _vtx *vtx = term->vtx;
--     if (lite_theme_loaded()) {
-+     if (lite_default_window_theme_loaded()) {
-           evt->x -= 5;
-           evt->y -= 23;
-      }
This page took 0.120544 seconds and 4 git commands to generate.