[gtkmm] Gtkmm-forge digest, Vol 1 #356 - 7 msgs
- From: gtkmm-forge-request lists sourceforge net
- To: gtkmm-forge lists sourceforge net
- Subject: [gtkmm] Gtkmm-forge digest, Vol 1 #356 - 7 msgs
- Date: Thu, 27 Feb 2003 12:19:02 -0800
Send Gtkmm-forge mailing list submissions to
gtkmm-forge lists sourceforge net
To subscribe or unsubscribe via the World Wide Web, visit
https://lists.sourceforge.net/lists/listinfo/gtkmm-forge
or, via email, send a message with subject or body 'help' to
gtkmm-forge-request lists sourceforge net
You can reach the person managing the list at
gtkmm-forge-admin lists sourceforge net
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Gtkmm-forge digest..."
gtkmm-forge is the mailing list that receives gtkmm bug reports from bugzilla. A daily digest is sent to gtkmm-main, to encourage people to help fixing the bugs.
Today's Topics:
1. [Bug 107152] New - Gnomemm won't compile: app-helper.cc: In method `const class Gnome::UI::Items::InfoData.... (bugzilla-daemon widget gnome org)
2. [Bug 107152] Changed - Gnomemm won't compile: app-helper.cc: In method `const class Gnome::UI::Items::InfoData.... (bugzilla-daemon widget gnome org)
3. [Bug 107161] New - gtk_entry() should return a Gtk::Entry* (bugzilla-daemon widget gnome org)
4. [Bug 107065] Changed - Added reference docs (bugzilla-daemon widget gnome org)
5. [Bug 104883] Changed - Added documentation to Glib::Cond (bugzilla-daemon widget gnome org)
6. [Bug 104883] Changed - Added documentation to Glib::Cond (bugzilla-daemon widget gnome org)
7. [Bug 107065] Changed - Added reference docs (bugzilla-daemon widget gnome org)
--__--__--
Message: 1
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net
Cc:
Date: Wed, 26 Feb 2003 17:02:55 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 107152] New - Gnomemm won't compile: app-helper.cc: In method `const class Gnome::UI::Items::InfoData....
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
http://bugzilla.gnome.org/show_bug.cgi?id=107152
Changed by vidvandre linuxmail org
--- shadow/107152 Wed Feb 26 17:02:55 2003
+++ shadow/107152.tmp.20594 Wed Feb 26 17:02:55 2003
@@ -0,0 +1,42 @@
+Bug#: 107152
+Product: gnomemm
+Version: 2.0
+OS: Linux
+OS Details: Slackware Linux 8.1/current 2.4.21-pre4
+Status: NEW
+Resolution:
+Severity: normal
+Priority: Normal
+Component: libgnomeuimm
+AssignedTo: gtkmm-forge lists sourceforge net
+ReportedBy: vidvandre linuxmail org
+TargetMilestone: ---
+URL:
+Summary: Gnomemm won't compile: app-helper.cc: In method `const class Gnome::UI::Items::InfoData....
+
+I am unable to compile gnomemm due to the following error,
+using gcc 2.95.3 with all the latest gnome libs/packages.
+I did not get this error compiling gnomemm 1.3.12.
+
+./configure
+make
+
+app-helper.cc: In method `const class Gnome::UI::Items::InfoData *
+Gnome::UI::Items::Info::get_data_() const':
+app-helper.cc:123: static_cast from `void *' to `const
+Gnome::UI::Items::InfoData *'
+make[5]: *** [app-helper.lo] Error 1
+make[5]: Leaving directory
+`/download/apps/gnomemm-all-1.3.15/libgnomeuimm/libgnomeui/libgnomeuimm'
+make[4]: *** [all-recursive] Error 1
+make[4]: Leaving directory
+`/download/apps/gnomemm-all-1.3.15/libgnomeuimm/libgnomeui/libgnomeuimm'
+make[3]: *** [all-recursive] Error 1
+make[3]: Leaving directory
+`/download/apps/gnomemm-all-1.3.15/libgnomeuimm/libgnomeui'
+make[2]: *** [all] Error 2
+make[2]: Leaving directory
+`/download/apps/gnomemm-all-1.3.15/libgnomeuimm/libgnomeui'
+make[1]: *** [all-recursive] Error 1
+make[1]: Leaving directory `/download/apps/gnomemm-all-1.3.15/libgnomeuimm'
+make: *** [all-recursive] Error 1
--__--__--
Message: 2
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net
Cc:
Date: Wed, 26 Feb 2003 18:51:05 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 107152] Changed - Gnomemm won't compile: app-helper.cc: In method `const class Gnome::UI::Items::InfoData....
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
http://bugzilla.gnome.org/show_bug.cgi?id=107152
Changed by vidvandre linuxmail org
--- shadow/107152 Wed Feb 26 17:02:55 2003
+++ shadow/107152.tmp.466 Wed Feb 26 18:51:04 2003
@@ -37,6 +37,25 @@
make[2]: *** [all] Error 2
make[2]: Leaving directory
`/download/apps/gnomemm-all-1.3.15/libgnomeuimm/libgnomeui'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/download/apps/gnomemm-all-1.3.15/libgnomeuimm'
make: *** [all-recursive] Error 1
+
+------- Additional Comments From vidvandre linuxmail org 2003-02-26 18:51 -------
+I tried to change this myself after refreshing my C++ skills.
+Now, gnomemm compiles without an error, but I'm not sure if it will
+work later:
+
+To:
+
+const InfoData* Info::get_data_() const
+{
+ return static_cast<InfoData*>(GnomeUIInfo::unused_data);
+}
+
+From:
+
+const InfoData* Info::get_data_() const
+{
+ return static_cast<const InfoData*>(GnomeUIInfo::unused_data);
+}
--__--__--
Message: 3
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net
Cc:
Date: Wed, 26 Feb 2003 20:19:41 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 107161] New - gtk_entry() should return a Gtk::Entry*
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
http://bugzilla.gnome.org/show_bug.cgi?id=107161
Changed by loban earthling net
--- shadow/107161 Wed Feb 26 20:19:41 2003
+++ shadow/107161.tmp.6195 Wed Feb 26 20:19:41 2003
@@ -0,0 +1,23 @@
+Bug#: 107161
+Product: gnomemm
+Version: 2.0
+OS: other
+OS Details:
+Status: NEW
+Resolution:
+Severity: normal
+Priority: Normal
+Component: libgnomeuimm
+AssignedTo: gtkmm-forge lists sourceforge net
+ReportedBy: loban earthling net
+TargetMilestone: ---
+URL:
+Summary: gtk_entry() should return a Gtk::Entry*
+
+Currently, calling
+ Gnome::UI::Entry::gtk_entry()
+returns a Gtk::Widget*.
+
+It ought to return a Gtk::Entry*. Almost never would we not want to have a
+Gtk::Entry* from that method, and having to dynamic_cast<Gtk::Entry*>() it
+is a major pain.
--__--__--
Message: 4
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net, mxpxfifws yahoo com
Cc:
Date: Thu, 27 Feb 2003 03:39:35 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 107065] Changed - Added reference docs
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
http://bugzilla.gnome.org/show_bug.cgi?id=107065
Changed by murrayc usa net
--- shadow/107065 Wed Feb 26 02:29:02 2003
+++ shadow/107065.tmp.17905 Thu Feb 27 03:39:35 2003
@@ -1,9 +1,9 @@
Bug#: 107065
Product: gtkmm
-Version: 2.4
+Version: 2.2
OS: Linux
OS Details:
Status: NEW
Resolution:
Severity: normal
Priority: Normal
@@ -29,6 +29,10 @@
See changelog and attached diff for full list of changes.
------- Additional Comments From mxpxfifws yahoo com 2003-02-25 16:04 -------
Created an attachment (id=14617)
Here's the diff file for the new docs.
+
+------- Additional Comments From murrayc usa net 2003-02-27 03:39 -------
+Changed version to 2.2, because I think you created this against 2.2
+rather than 2.4. I'll apply it to both when I can get properly online.
--__--__--
Message: 5
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net, rvinyard cs nmsu edu
Cc:
Date: Thu, 27 Feb 2003 03:41:27 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 104883] Changed - Added documentation to Glib::Cond
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
http://bugzilla.gnome.org/show_bug.cgi?id=104883
Changed by murrayc usa net
--- shadow/104883 Fri Feb 14 19:50:54 2003
+++ shadow/104883.tmp.18641 Thu Feb 27 03:41:27 2003
@@ -28,6 +28,9 @@
necessary.
rvinyard, sorry for the delay.
------- Additional Comments From murrayc usa net 2003-02-14 19:50 -------
Daniel?
+
+------- Additional Comments From murrayc usa net 2003-02-27 03:41 -------
+Daniel, if you don't respond then I will simply apply this.
--__--__--
Message: 6
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net, rvinyard cs nmsu edu
Cc:
Date: Thu, 27 Feb 2003 10:15:45 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 104883] Changed - Added documentation to Glib::Cond
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
http://bugzilla.gnome.org/show_bug.cgi?id=104883
Changed by murrayc usa net
--- shadow/104883 Thu Feb 27 03:41:27 2003
+++ shadow/104883.tmp.4809 Thu Feb 27 10:15:45 2003
@@ -31,6 +31,12 @@
------- Additional Comments From murrayc usa net 2003-02-14 19:50 -------
Daniel?
------- Additional Comments From murrayc usa net 2003-02-27 03:41 -------
Daniel, if you don't respond then I will simply apply this.
+
+------- Additional Comments From murrayc usa net 2003-02-27 10:15 -------
+Applied. Thanks a lot, and sorry for the delay.
+
+I forgot to apply this to 2.4 too. I'll do it when I get another
+chance to use a real network connection.
--__--__--
Message: 7
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net, mxpxfifws yahoo com
Cc:
Date: Thu, 27 Feb 2003 10:16:00 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 107065] Changed - Added reference docs
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
http://bugzilla.gnome.org/show_bug.cgi?id=107065
Changed by murrayc usa net
--- shadow/107065 Thu Feb 27 03:39:35 2003
+++ shadow/107065.tmp.4976 Thu Feb 27 10:16:00 2003
@@ -1,9 +1,9 @@
Bug#: 107065
Product: gtkmm
-Version: 2.2
+Version: 2.4
OS: Linux
OS Details:
Status: NEW
Resolution:
Severity: normal
Priority: Normal
@@ -33,6 +33,12 @@
Here's the diff file for the new docs.
------- Additional Comments From murrayc usa net 2003-02-27 03:39 -------
Changed version to 2.2, because I think you created this against 2.2
rather than 2.4. I'll apply it to both when I can get properly online.
+
+------- Additional Comments From murrayc usa net 2003-02-27 10:15 -------
+Applied. Thanks a lot, and sorry for the delay.
+
+I forgot to apply this to 2.4 too. I'll do it when I get another
+chance to use a real network connection.
--__--__--
_______________________________________________
Gtkmm-forge mailing list
Gtkmm-forge lists sourceforge net
https://lists.sourceforge.net/lists/listinfo/gtkmm-forge
End of Gtkmm-forge Digest
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]