[E-devel] [PATCH] e_randr: fix compiler warning

2012-03-26 Thread Thomas Gstädtner
Signed-off-by: Thomas Gstädtner 
---
 src/bin/e_randr_private.h |3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/bin/e_randr_private.h b/src/bin/e_randr_private.h
index cada26a..02c7abc 100644
--- a/src/bin/e_randr_private.h
+++ b/src/bin/e_randr_private.h
@@ -22,6 +22,9 @@
 #define E_RANDR_12_NO_MODES  (E_RANDR_12_NO || 
!e_randr_screen_info.rrvd_info.randr_info_12->modes)
 #define E_RANDR_12_NO_MODE(mode) (E_RANDR_12_NO || 
!e_randr_screen_info.rrvd_info.randr_info_12->modes || (mode == 
Ecore_X_Randr_None))
 
+// Generic
+Eina_Bool   _try_restore_configuration(void);
+
 // RandRR == 1.1
 E_Randr_Screen_Info_11 *_11_screen_info_new(void);
 void_11_screen_info_free(E_Randr_Screen_Info_11 
*screen_info_11);
-- 
1.7.8.5


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [PATCH] e_randr: fix compiler warning

2012-03-26 Thread Leif Middelschulte
2012/3/26 Thomas Gstädtner :
> Signed-off-by: Thomas Gstädtner 
> ---
>  src/bin/e_randr_private.h |    3 +++
>  1 files changed, 3 insertions(+), 0 deletions(-)
>
> diff --git a/src/bin/e_randr_private.h b/src/bin/e_randr_private.h
> index cada26a..02c7abc 100644
> --- a/src/bin/e_randr_private.h
> +++ b/src/bin/e_randr_private.h
> @@ -22,6 +22,9 @@
>  #define E_RANDR_12_NO_MODES          (E_RANDR_12_NO || 
> !e_randr_screen_info.rrvd_info.randr_info_12->modes)
>  #define E_RANDR_12_NO_MODE(mode)     (E_RANDR_12_NO || 
> !e_randr_screen_info.rrvd_info.randr_info_12->modes || (mode == 
> Ecore_X_Randr_None))
>
> +// Generic
> +Eina_Bool               _try_restore_configuration(void);
> +
>  // RandRR == 1.1
>  E_Randr_Screen_Info_11 *_11_screen_info_new(void);
>  void                    _11_screen_info_free(E_Randr_Screen_Info_11 
> *screen_info_11);
Please don't send patches inlined. Could you please resend it as an attachement?
> --
> 1.7.8.5
>
>
> --
> This SF email is sponsosred by:
> Try Windows Azure free for 90 days Click Here
> http://p.sf.net/sfu/sfd2d-msazure
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel



-- 
Leif

--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [PATCH] e_randr: fix compiler warning

2012-03-26 Thread thomasg
On Mon, Mar 26, 2012 at 23:03, Leif Middelschulte
 wrote:
> 2012/3/26 Thomas Gstädtner :
>> Signed-off-by: Thomas Gstädtner 
>> ---
>>  src/bin/e_randr_private.h |    3 +++
>>  1 files changed, 3 insertions(+), 0 deletions(-)
>>
>> diff --git a/src/bin/e_randr_private.h b/src/bin/e_randr_private.h
>> index cada26a..02c7abc 100644
>> --- a/src/bin/e_randr_private.h
>> +++ b/src/bin/e_randr_private.h
>> @@ -22,6 +22,9 @@
>>  #define E_RANDR_12_NO_MODES          (E_RANDR_12_NO || 
>> !e_randr_screen_info.rrvd_info.randr_info_12->modes)
>>  #define E_RANDR_12_NO_MODE(mode)     (E_RANDR_12_NO || 
>> !e_randr_screen_info.rrvd_info.randr_info_12->modes || (mode == 
>> Ecore_X_Randr_None))
>>
>> +// Generic
>> +Eina_Bool               _try_restore_configuration(void);
>> +
>>  // RandRR == 1.1
>>  E_Randr_Screen_Info_11 *_11_screen_info_new(void);
>>  void                    _11_screen_info_free(E_Randr_Screen_Info_11 
>> *screen_info_11);
> Please don't send patches inlined. Could you please resend it as an 
> attachement?
>> --
>> 1.7.8.5
>>
>>
>> --
>> This SF email is sponsosred by:
>> Try Windows Azure free for 90 days Click Here
>> http://p.sf.net/sfu/sfd2d-msazure
>> ___
>> enlightenment-devel mailing list
>> enlightenment-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
>
>
> --
> Leif
>
> --
> This SF email is sponsosred by:
> Try Windows Azure free for 90 days Click Here
> http://p.sf.net/sfu/sfd2d-msazure
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Sure, here we go.
In case the attachment comes twice, I'm sorry, just checking if
sourceforge accepts x-patch mimetype.

~thomasg
From bcfdd2420803072201b147e6310774544ab139e6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Thomas=20Gst=C3=A4dtner?= 
Date: Mon, 26 Mar 2012 20:21:20 +0200
Subject: [PATCH] e_randr: fix compiler warning
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Thomas Gstädtner 
---
 src/bin/e_randr_private.h |3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/bin/e_randr_private.h b/src/bin/e_randr_private.h
index cada26a..02c7abc 100644
--- a/src/bin/e_randr_private.h
+++ b/src/bin/e_randr_private.h
@@ -22,6 +22,9 @@
 #define E_RANDR_12_NO_MODES  (E_RANDR_12_NO || 
!e_randr_screen_info.rrvd_info.randr_info_12->modes)
 #define E_RANDR_12_NO_MODE(mode) (E_RANDR_12_NO || 
!e_randr_screen_info.rrvd_info.randr_info_12->modes || (mode == 
Ecore_X_Randr_None))
 
+// Generic
+Eina_Bool   _try_restore_configuration(void);
+
 // RandRR == 1.1
 E_Randr_Screen_Info_11 *_11_screen_info_new(void);
 void_11_screen_info_free(E_Randr_Screen_Info_11 
*screen_info_11);
-- 
1.7.8.5

From bcfdd2420803072201b147e6310774544ab139e6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Thomas=20Gst=C3=A4dtner?= 
Date: Mon, 26 Mar 2012 20:21:20 +0200
Subject: [PATCH] e_randr: fix compiler warning
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Thomas Gstädtner 
---
 src/bin/e_randr_private.h |3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/bin/e_randr_private.h b/src/bin/e_randr_private.h
index cada26a..02c7abc 100644
--- a/src/bin/e_randr_private.h
+++ b/src/bin/e_randr_private.h
@@ -22,6 +22,9 @@
 #define E_RANDR_12_NO_MODES  (E_RANDR_12_NO || !e_randr_screen_info.rrvd_info.randr_info_12->modes)
 #define E_RANDR_12_NO_MODE(mode) (E_RANDR_12_NO || !e_randr_screen_info.rrvd_info.randr_info_12->modes || (mode == Ecore_X_Randr_None))
 
+// Generic
+Eina_Bool   _try_restore_configuration(void);
+
 // RandRR == 1.1
 E_Randr_Screen_Info_11 *_11_screen_info_new(void);
 void_11_screen_info_free(E_Randr_Screen_Info_11 *screen_info_11);
-- 
1.7.8.5

--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [PATCH] e_randr: fix compiler warning

2012-03-26 Thread Daniel Juyung Seo
http://trac.enlightenment.org/e/wiki/PatchReview
FYI
On Mar 27, 2012 6:14 AM, "thomasg"  wrote:
--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [PATCH] e_randr: fix compiler warning

2012-03-26 Thread thomasg
On Tue, Mar 27, 2012 at 00:27, Daniel Juyung Seo  wrote:
> http://trac.enlightenment.org/e/wiki/PatchReview
> FYI
> On Mar 27, 2012 6:14 AM, "thomasg"  wrote:
> --
> This SF email is sponsosred by:
> Try Windows Azure free for 90 days Click Here
> http://p.sf.net/sfu/sfd2d-msazure
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Thanks for that, didn't even know this existed.
One question about it: is there any way patches created within git can
be accepted?
As I keep some changes in git locally and work on different stuff at
the same time (that's not ready for commit), I find it very hard to
create atomic commits with SVN.
To my knowledge current SVN can apply patches from git just fine, so
is this acceptable?

~thomasg

--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [PATCH] e_randr: fix compiler warning

2012-03-26 Thread Daniel Juyung Seo
I had no problem applying git patches so far :)
And I use both git-svn and git.
On Mar 27, 2012 7:37 AM, "thomasg"  wrote:

> On Tue, Mar 27, 2012 at 00:27, Daniel Juyung Seo 
> wrote:
> > http://trac.enlightenment.org/e/wiki/PatchReview
> > FYI
> > On Mar 27, 2012 6:14 AM, "thomasg"  wrote:
> >
> --
> > This SF email is sponsosred by:
> > Try Windows Azure free for 90 days Click Here
> > http://p.sf.net/sfu/sfd2d-msazure
> > ___
> > enlightenment-devel mailing list
> > enlightenment-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
> Thanks for that, didn't even know this existed.
> One question about it: is there any way patches created within git can
> be accepted?
> As I keep some changes in git locally and work on different stuff at
> the same time (that's not ready for commit), I find it very hard to
> create atomic commits with SVN.
> To my knowledge current SVN can apply patches from git just fine, so
> is this acceptable?
>
> ~thomasg
>
>
> --
> This SF email is sponsosred by:
> Try Windows Azure free for 90 days Click Here
> http://p.sf.net/sfu/sfd2d-msazure
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [PATCH] e_randr: fix compiler warning

2012-03-30 Thread The Rasterman
On Mon, 26 Mar 2012 23:12:38 +0200 thomasg  said:

tnx. in svn! :)

> On Mon, Mar 26, 2012 at 23:03, Leif Middelschulte
>  wrote:
> > 2012/3/26 Thomas Gstädtner :
> >> Signed-off-by: Thomas Gstädtner 
> >> ---
> >>  src/bin/e_randr_private.h |    3 +++
> >>  1 files changed, 3 insertions(+), 0 deletions(-)
> >>
> >> diff --git a/src/bin/e_randr_private.h b/src/bin/e_randr_private.h
> >> index cada26a..02c7abc 100644
> >> --- a/src/bin/e_randr_private.h
> >> +++ b/src/bin/e_randr_private.h
> >> @@ -22,6 +22,9 @@
> >>  #define E_RANDR_12_NO_MODES          (E_RANDR_12_NO || !
> >> e_randr_screen_info.rrvd_info.randr_info_12->modes) #define
> >> E_RANDR_12_NO_MODE(mode)     (E_RANDR_12_NO || !
> >> e_randr_screen_info.rrvd_info.randr_info_12->modes || (mode ==
> >> Ecore_X_Randr_None))
> >>
> >> +// Generic
> >> +Eina_Bool               _try_restore_configuration(void);
> >> +
> >>  // RandRR == 1.1
> >>  E_Randr_Screen_Info_11 *_11_screen_info_new(void);
> >>  void                    _11_screen_info_free(E_Randr_Screen_Info_11
> >> *screen_info_11);
> > Please don't send patches inlined. Could you please resend it as an
> > attachement?
> >> --
> >> 1.7.8.5
> >>
> >>
> >> --
> >> This SF email is sponsosred by:
> >> Try Windows Azure free for 90 days Click Here
> >> http://p.sf.net/sfu/sfd2d-msazure
> >> ___
> >> enlightenment-devel mailing list
> >> enlightenment-devel@lists.sourceforge.net
> >> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> >
> >
> >
> > --
> > Leif
> >
> > --
> > This SF email is sponsosred by:
> > Try Windows Azure free for 90 days Click Here
> > http://p.sf.net/sfu/sfd2d-msazure
> > ___
> > enlightenment-devel mailing list
> > enlightenment-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> 
> Sure, here we go.
> In case the attachment comes twice, I'm sorry, just checking if
> sourceforge accepts x-patch mimetype.
> 
> ~thomasg


-- 
- Codito, ergo sum - "I code, therefore I am" --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [PATCH] e_randr: fix compiler warning

2012-03-30 Thread Leif Middelschulte
2012/3/30 Carsten Haitzler :
> On Mon, 26 Mar 2012 23:12:38 +0200 thomasg  said:
>
> tnx. in svn! :)
Thanks, for putting it in. I somehow thought that Daniel already did
it, while I was traveling.

>
>> On Mon, Mar 26, 2012 at 23:03, Leif Middelschulte
>>  wrote:
>> > 2012/3/26 Thomas Gstädtner :
>> >> Signed-off-by: Thomas Gstädtner 
>> >> ---
>> >>  src/bin/e_randr_private.h |    3 +++
>> >>  1 files changed, 3 insertions(+), 0 deletions(-)
>> >>
>> >> diff --git a/src/bin/e_randr_private.h b/src/bin/e_randr_private.h
>> >> index cada26a..02c7abc 100644
>> >> --- a/src/bin/e_randr_private.h
>> >> +++ b/src/bin/e_randr_private.h
>> >> @@ -22,6 +22,9 @@
>> >>  #define E_RANDR_12_NO_MODES          (E_RANDR_12_NO || !
>> >> e_randr_screen_info.rrvd_info.randr_info_12->modes) #define
>> >> E_RANDR_12_NO_MODE(mode)     (E_RANDR_12_NO || !
>> >> e_randr_screen_info.rrvd_info.randr_info_12->modes || (mode ==
>> >> Ecore_X_Randr_None))
>> >>
>> >> +// Generic
>> >> +Eina_Bool               _try_restore_configuration(void);
>> >> +
>> >>  // RandRR == 1.1
>> >>  E_Randr_Screen_Info_11 *_11_screen_info_new(void);
>> >>  void                    _11_screen_info_free(E_Randr_Screen_Info_11
>> >> *screen_info_11);
>> > Please don't send patches inlined. Could you please resend it as an
>> > attachement?
>> >> --
>> >> 1.7.8.5
>> >>
>> >>
>> >> --
>> >> This SF email is sponsosred by:
>> >> Try Windows Azure free for 90 days Click Here
>> >> http://p.sf.net/sfu/sfd2d-msazure
>> >> ___
>> >> enlightenment-devel mailing list
>> >> enlightenment-devel@lists.sourceforge.net
>> >> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>> >
>> >
>> >
>> > --
>> > Leif
>> >
>> > --
>> > This SF email is sponsosred by:
>> > Try Windows Azure free for 90 days Click Here
>> > http://p.sf.net/sfu/sfd2d-msazure
>> > ___
>> > enlightenment-devel mailing list
>> > enlightenment-devel@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>>
>> Sure, here we go.
>> In case the attachment comes twice, I'm sorry, just checking if
>> sourceforge accepts x-patch mimetype.
>>
>> ~thomasg
>
>
> --
> - Codito, ergo sum - "I code, therefore I am" --
> The Rasterman (Carsten Haitzler)    ras...@rasterman.com
>
>
> --
> This SF email is sponsosred by:
> Try Windows Azure free for 90 days Click Here
> http://p.sf.net/sfu/sfd2d-msazure
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel



-- 
Leif

--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel