Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 471340 Details for
Bug 600802
www-client/jd-2.8.5_p120826 : /.../drawareabase.h:309:51: error: cannot convert ‘Glib::RefPtr<Gdk::Window>’ to ‘const bool’ in return
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
explicitly cast Glib::RefPtr to bool
explicit_refptr_bool.patch (text/plain), 608 bytes, created by
nanikata15
on 2017-04-30 05:12:59 UTC
(
hide
)
Description:
explicitly cast Glib::RefPtr to bool
Filename:
MIME Type:
Creator:
nanikata15
Created:
2017-04-30 05:12:59 UTC
Size:
608 bytes
patch
obsolete
>diff -r 3d495047ed76 jd/trunk/src/article/drawareabase.h >--- a/jd/trunk/src/article/drawareabase.h Sat Apr 04 11:19:02 2015 +0000 >+++ b/jd/trunk/src/article/drawareabase.h Sun Apr 30 13:12:06 2017 +0900 >@@ -330,7 +330,7 @@ > > // ãªã¢ã©ã¤ãºããã > // Gtk::Widget::is_realized() ã¯ãã¾ãåä½ããªã >- const bool is_drawarea_realized(){ return m_window; } >+ const bool is_drawarea_realized(){ return static_cast<bool>(m_window); } > > // æåè²ã®ID( colorid.h ã«ãã ID ãæå®) > const int get_colorid_text() const{ return m_colorid_text; }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 600802
:
454328
|
454330
|
454332
|
454334
| 471340