Commit Graph

14787 Commits

Author SHA1 Message Date
Mike Blumenkrantz 503d7305db Dear all,
As I've said before, I'm attached a patch for minor bugs in the e17 again.
 Please take a look at attached patch.

 01. missing E_FREE(wev) if zone is null
     File: src/bin/e_actions.c: 1467
     Function: ACT_FN_GO_EDGE macro function
     null check of zone and wev, it would be better to separate them.

 02. dead code
     File: src/bin/e_configure.c: 338
     Function: _e_configure_efreet_desktop_update

 03. array buf might be overwritten by "buf[i] = '\0'"
     File: src/bin/e_eap_editor.c: 412
     Function: _e_desktop_edit_user_local_desktop_filename_generate

 04. missing null check
     File: src/bin/e_fm.c
     Function: e_fm2_icon_get: 2196
     It would be better to check ic->info.file in e_fm2_icon_get
     before passing to _e_fm2_file_is_edje because it doesn't check
     null pointer.

 05. array 'path' might be overwritten by "path[i + 1] = XXX"
     File: src/bin/e_fm.c: 4299
     Function: _e_fm2_uri_parse

 06. missing null check
     File: src/bin/e_fm_device.c: 468
     Function: e_fm2_device_mount_find
     If the null pointer is passed to e_fm2_device_mount_find,
     then it attempt to compare string using strncmp without null
     check.
     e.g., e_fm2_path_set
           -> real_path = _e_fm2_dev_path_map: this function could return null.
           -> sd->realpath = real_path;
           -> e_fm2_device_mount_find(sd->realpath)

 07. missing free(fstrip)
     File: src/bin/e_import_config_dialog.c: 34
     Function: _import_edj_gen

 08. missing _module_free(cfm)
     File: src/bin/e_int_config_modules.c: 530
     Function: _load_modules

 09. missing free(class) in for loop
     File: src/bin/e_int_menus.c: 1187
     Function: _e_int_menus_clients_add_by_class

 10. missing free(roots)
     File: src/bin/e_main.c: 1646
     Function: _e_main_screens_init
     Actually only e_win_init function could return 0.
     But I've added free to other codes for the consistency.

 11. missing null check of 'es->cfg'
     File: src/bin/e_shelf.c: 2583
     Function: _e_shelf_bindings_add
     'es->cfg' might be null. please look at e_shelf_position_calc.

 12. no ect->category check before comparing string values
     File: src/bin/e_theme.c: 387
     Function: e_theme_config_remove
     I'm not sure, but inner if block checks ect->category before
     deleting a string.

 13. missing E_FREE(wcb) in while loop
     File: src/bin/e_widget_ilist.c: 146
     Function: _queue_timer

 14. dereferencing freed pointer 'entry'
     File: src/modules/quickaccess/e_mod_quickaccess.c: 583
     Function: _e_qa_event_border_remove_cb

 15. missing E_FREE(trov)
     File: src/modules/tiling/e_mod_tiling.c: 3106
     Function: _do_transition_overlay

 Thanks & Regards,
 Gwanglim


SVN revision: 80231
2012-12-05 11:13:09 +00:00
Carsten Haitzler 84b97ad9cc warn--... and actually build. :)
SVN revision: 80229
2012-12-05 10:56:18 +00:00
Mike Blumenkrantz f66c6c6f2c unbreak compile with 1.7 branch
SVN revision: 80226
2012-12-05 09:59:02 +00:00
Massimo Maiurana 198e6aaf52 updating esperanto translations
SVN revision: 80224
2012-12-05 09:46:19 +00:00
Cedric BAIL 6f7303f264 e: oops, was already there.
SVN revision: 80223
2012-12-05 08:48:34 +00:00
Gwanglim Lee 499b88748b From: Gwanglim Lee <gl77.lee@samsung.com>
Subject: Re: Re: Re: [E-devel] [RFC] Virtual desktop window profile

I've attached 4th patch. May the 4th be with you.

ecore patch has been merged with efl and all files are based on r80123.

Thanks & Regards,
Gwanglim

------- Original Message -------
Sender : Daniel Juyung Seo<seojuyung2@gmail.com>
Date : 2012-12-04 01:55 (GMT+09:00)
Title : Re: Re: [E-devel] [RFC] Virtual desktop window profile

It looks ok to me.
Sorry but can you re-generate the patch according to the recent ecore
merge to efl single tree?

Daniel Juyung Seo (SeoZ)


On Thu, Nov 29, 2012 at 12:29 AM, Gwanglim Lee <gl77.lee@samsung.com>
wrote:

Dear Raster and Daniel Juyung Seo,

I've attached 3rd patches and test_config according to your reviews.
These are based on r79782.

[elementary & ecore]
1. "profile,set" -> "profile,changed" - done
2. spaces after EINA_LIST_FOREACH - done
3. variable type - keep
4. author - done
5. removing deprecated marking in patch - done
6. add elm_win_available_profiles_get to test_config for the debugging
purpose - done

7. check whether a given profile is present in an available profiles.
otherwise window profile will be one of the item
    in available profiles. - newly added thing to the elm_win
        8. merge with EO - done. :(
        
        
            Any comments would be appreciated.
            


SVN revision: 80216
2012-12-05 06:51:16 +00:00
Carsten Haitzler b000cf12d6 only srand once.
SVN revision: 80209
2012-12-05 06:21:41 +00:00
Cedric BAIL de31494ade e: forgot to update AUTHORS.
SVN revision: 80205
2012-12-05 02:25:11 +00:00
Cedric BAIL d8b8ba3be4 e: fix build on Solaris 11.
Patch by Robert David <robert.david.public@gmail.com>.


SVN revision: 80204
2012-12-05 02:23:00 +00:00
Mike Blumenkrantz 12421efeeb ALPHA8: THE MOST ALPHA OF ALPHAS
SVN revision: 80175
2012-12-04 15:39:06 +00:00
Mike Blumenkrantz 17c9b707d5 fix focus_revert_on_hide_or_close option to work correctly with mouse focus, also fix annoying pointer warp focus bug which erroneously focused windows while moving the pointer for pointer_slide warps on new windows
SVN revision: 80174
2012-12-04 15:11:53 +00:00
Mike Blumenkrantz 3bd8f4dd81 also fix lost window pointer warping
SVN revision: 80173
2012-12-04 14:58:48 +00:00
Mike Blumenkrantz 86a42a2e73 add functions for locking border focus
SVN revision: 80172
2012-12-04 14:57:35 +00:00
Mike Blumenkrantz 17ef5ee535 fix e_exec crash
SVN revision: 80171
2012-12-04 14:50:16 +00:00
Mike Blumenkrantz 5980697b20 delete from hash by key
SVN revision: 80170
2012-12-04 14:49:49 +00:00
Mike Blumenkrantz 4eeeffb4b9 unused--
SVN revision: 80153
2012-12-04 13:53:29 +00:00
Mike Blumenkrantz e1c9e8e529 randr dialog resizable
SVN revision: 80152
2012-12-04 13:00:47 +00:00
Mike Blumenkrantz 1b76509002 muting volume no longer causes volume to change
SVN revision: 80151
2012-12-04 12:56:08 +00:00
Mike Blumenkrantz 64371a3aed fix error with pulse volume calculations which prevented volume from reaching 100%
SVN revision: 80150
2012-12-04 12:55:48 +00:00
Mike Blumenkrantz 427857d239 set focus object for main efm widget scrollframe
SVN revision: 80144
2012-12-04 11:21:15 +00:00
Mike Blumenkrantz dd3f97f742 scrollframe scrollbars are NOT visible by default
ticket #1846


SVN revision: 80143
2012-12-04 11:20:35 +00:00
Mike Blumenkrantz 5a60f9dad8 further clamp menus to zone size
ticket #1895


SVN revision: 80138
2012-12-04 09:08:19 +00:00
Mike Blumenkrantz 40acb52ead after 5 pulse disconnects, delete and retry to see if socket changed
SVN revision: 80137
2012-12-04 09:05:13 +00:00
Mike Blumenkrantz e912c3cd42 binding dialogs are resizable once more
SVN revision: 80131
2012-12-04 07:41:20 +00:00
Mike Blumenkrantz 0ceb3289f0 fix e_entry cnp to work better with non-container grab windows
SVN revision: 80094
2012-12-03 19:04:27 +00:00
Mike Blumenkrantz 23d0765d1a add function to return current key grab xwin
SVN revision: 80093
2012-12-03 19:03:49 +00:00
Mike Blumenkrantz d48545db45 add function to disable entry menu
SVN revision: 80091
2012-12-03 18:31:14 +00:00
Massimo Maiurana 5e021ac3f7 updating portuguese and italian translations
SVN revision: 80088
2012-12-03 17:42:19 +00:00
Mike Blumenkrantz a550ed2a85 fix "focus" option for winlist
ticket #1894


SVN revision: 80078
2012-12-03 15:12:58 +00:00
Carsten Haitzler 3669f44844 adjust more.
SVN revision: 80077
2012-12-03 15:09:31 +00:00
Carsten Haitzler c9e50177d8 adjust shadowing for fileman scroller... :/
SVN revision: 80076
2012-12-03 15:08:36 +00:00
Mike Blumenkrantz d444728457 all dialogs EXCEPT module config dialog are not resizable. this is just too frustrating
SVN revision: 80075
2012-12-03 14:59:39 +00:00
Carsten Haitzler ca46474a25 ok- try this instead for broken evry layout...
SVN revision: 80069
2012-12-03 14:27:18 +00:00
Mike Blumenkrantz 9c0c838558 clamp fwin to screen size/position
ticket #1886


SVN revision: 80067
2012-12-03 14:03:13 +00:00
Mike Blumenkrantz ef720c87df fix keybindings config to not go crazy when scrolling with arrows
ticket #1856


SVN revision: 80064
2012-12-03 13:22:24 +00:00
Carsten Haitzler 3ee8c85dbe make tabs have a min size for shadow part.. and scale it.
SVN revision: 80056
2012-12-03 12:07:21 +00:00
Carsten Haitzler 3aa20845e0 try using the actual min/calced min size of a tab item. not current
box geom!



SVN revision: 80055
2012-12-03 12:06:28 +00:00
Carsten Haitzler 1301c68a31 oops bring back evry tab item labels :)
SVN revision: 80050
2012-12-03 11:43:42 +00:00
Carsten Haitzler df2ea008c2 fix eina linking of e_open.
SVN revision: 80049
2012-12-03 11:40:34 +00:00
Carsten Haitzler d268bb2cc3 fix infintie delfn loop waiting to happen.
SVN revision: 80048
2012-12-03 11:40:23 +00:00
Carsten Haitzler a4af3e5f6d fix evry segv!
SVN revision: 80047
2012-12-03 11:34:41 +00:00
Carsten Haitzler 7203636281 fixed complaint--
SVN revision: 80046
2012-12-03 11:31:24 +00:00
Mike Blumenkrantz bf5d2db05e some dso fixes for e_fm_cmdline
SVN revision: 80045
2012-12-03 11:24:40 +00:00
Carsten Haitzler 0c99b5c260 add... everything. to theme.
SVN revision: 80044
2012-12-03 10:57:15 +00:00
Cedric BAIL 7748928d4d e: add some more real life background.
Provided by Nicolas Beaumont (http://www.nicolas-beaumont.fr/).


SVN revision: 80043
2012-12-03 10:51:16 +00:00
Cedric BAIL d6b04df109 e: when valgrind is on, no need to ptrace anything.
SVN revision: 80042
2012-12-03 10:43:14 +00:00
Mike Blumenkrantz fe5d6d01c1 trivially reflow some keybind dialog code
SVN revision: 80040
2012-12-03 10:28:19 +00:00
Mike Blumenkrantz 9ab2f7b1ee clean up some stringshare use
SVN revision: 80035
2012-12-03 10:16:59 +00:00
Mike Blumenkrantz 8adb889d90 hide evry when desklock goes up
SVN revision: 80033
2012-12-03 09:43:51 +00:00
Mike Blumenkrantz 68e6b07cd7 all dialogs are no longer resizable
SVN revision: 80032
2012-12-03 09:24:12 +00:00