[gtkmm] Gtkmm-forge digest, Vol 1 #230 - 9 msgs
- From: gtkmm-forge-request lists sourceforge net
- To: gtkmm-forge lists sourceforge net
- Subject: [gtkmm] Gtkmm-forge digest, Vol 1 #230 - 9 msgs
- Date: Tue, 17 Sep 2002 12:01:29 -0700
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 93287] Changed - Program::locate_file uses GnomeFileDomain which is a C enum (bugzilla-daemon widget gnome org)
2. [Bug 93434] New - libgnomeui/gnome-procbar.h change causes gnomemm to not compile (bugzilla-daemon widget gnome org)
3. [Bug 93413] Changed - Gtk::TreeRowReference copyable? (bugzilla-daemon widget gnome org)
4. [Bug 91410] Changed - Gtk::Menu not properly C++ wrapped (bugzilla-daemon widget gnome org)
5. [Bug 93434] Changed - libgnomeui/gnome-procbar.h change causes gnomemm to not compile (bugzilla-daemon widget gnome org)
6. [Bug 93413] Changed - Gtk::TreeRowReference copyable? (bugzilla-daemon widget gnome org)
7. [Bug 93434] Changed - libgnomeui/gnome-procbar.h change causes gnomemm to not compile (bugzilla-daemon widget gnome org)
8. [Bug 93413] Changed - Gtk::TreeRowReference copyable? (bugzilla-daemon widget gnome org)
9. [Bug 93434] Changed - libgnomeui/gnome-procbar.h change causes gnomemm to not compile (bugzilla-daemon widget gnome org)
--__--__--
Message: 1
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net
Cc:
Date: Mon, 16 Sep 2002 16:49:35 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 93287] Changed - Program::locate_file uses GnomeFileDomain which is a C enum
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=93287
Changed by llanero jazzfree com
--- shadow/93287 Sun Sep 15 06:29:13 2002
+++ shadow/93287.tmp.9916 Mon Sep 16 16:49:35 2002
@@ -27,6 +27,26 @@
This prevents my app from getting to the pixmap complete path so I can load
it with Gtk::Image
------- Additional Comments From murrayc usa net 2002-09-15 06:29 -------
Fixed in CVS.
+
+------- Additional Comments From llanero jazzfree com 2002-09-16 16:49 -------
+I have tried gnomemm 1.3.10
+
+when I try to use it:
+
+cout << "PIX= " <<
+Gnome::Program::get()->locate_file(Gnome::FILE_DOMAIN_APP_PIXMAP,
+"pixmap_open.png") << endl;
+
+at runtime I get:
+
+gnome-program.c:986:gnome_program_locate_file(): Directory properties
+not set correctly. Cannot locate application specific files.
+PIX=
+
+Anyway, the problem was about the C enum, that is solved.
+
+I'm using a -DPIXMAPS_DIR=/path/to/pixmaps at compile time, so I won't
+investigate further.
--__--__--
Message: 2
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net
Cc:
Date: Mon, 16 Sep 2002 16:59:20 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 93434] New - libgnomeui/gnome-procbar.h change causes gnomemm to not compile
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=93434
Changed by julian jabber org
--- shadow/93434 Mon Sep 16 16:59:18 2002
+++ shadow/93434.tmp.15029 Mon Sep 16 16:59:20 2002
@@ -0,0 +1,22 @@
+Bug#: 93434
+Product: gnomemm
+Version: 1.2
+OS: Linux
+OS Details: Red Hat Linux 7.3.93 (Limbo)
+Status: NEW
+Resolution:
+Severity: normal
+Priority: Normal
+Component: libgnomeuimm
+AssignedTo: gtkmm-forge lists sourceforge net
+ReportedBy: julian jabber org
+TargetMilestone: ---
+URL:
+Summary: libgnomeui/gnome-procbar.h change causes gnomemm to not compile
+
+type_correctcallback in procbar.gen_h is no longer needed for the version
+of gnome-procbar.h that I have. cvs.gnome.org does not report that this was
+fixed in CVS, however my gnome-libs "1.4.1.2.90-18" has it "fixed"
+
+the relevant function is gnome_proc_bar_construct, which the final argument
+in my version of gnome-libs is gint (*cb)()
--__--__--
Message: 3
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net, julian jabber org
Cc:
Date: Tue, 17 Sep 2002 03:49:44 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 93413] Changed - Gtk::TreeRowReference copyable?
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=93413
Changed by murrayc usa net
--- shadow/93413 Mon Sep 16 12:39:30 2002
+++ shadow/93413.tmp.25740 Tue Sep 17 03:49:44 2002
@@ -14,6 +14,18 @@
URL:
Summary: Gtk::TreeRowReference copyable?
Should Gtk::TreeRowReference be copyable? It would be nice... I started
working on it, but not fully understanding the memory management involved,
mine crashes ;)
+
+------- Additional Comments From murrayc usa net 2002-09-17 03:49 -------
+No, it is not. From the header file:
+
+private:
+ // noncopyable
+ TreeRowReference(const TreeRowReference&);
+ TreeRowReference& operator=(const TreeRowReference&);
+
+So you should not be able to write code that copies it. So I don't see
+how it could cause a crash. Please attempt to write some
+simple-as-possible compileable example code to demonstrate your problem.
--__--__--
Message: 4
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net, szombath bifab de
Cc:
Date: Tue, 17 Sep 2002 03:55:22 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 91410] Changed - Gtk::Menu not properly C++ wrapped
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=91410
Changed by murrayc usa net
--- shadow/91410 Thu Aug 29 05:48:00 2002
+++ shadow/91410.tmp.27033 Tue Sep 17 03:55:22 2002
@@ -146,6 +146,11 @@
{
------- Additional Comments From murrayc usa net 2002-08-29 05:47 -------
So this isn't a very high priority because that method isn't used very
much.
+
+------- Additional Comments From murrayc usa net 2002-09-17 03:55 -------
+Is this bug still a bug? I am confused when reading the previous
+discussion, and I don't know how to interpert the output of the test
+program.
--__--__--
Message: 5
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net, julian jabber org
Cc:
Date: Tue, 17 Sep 2002 04:02:42 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 93434] Changed - libgnomeui/gnome-procbar.h change causes gnomemm to not compile
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=93434
Changed by murrayc usa net
--- shadow/93434 Mon Sep 16 16:59:20 2002
+++ shadow/93434.tmp.28750 Tue Sep 17 04:02:42 2002
@@ -17,6 +17,11 @@
type_correctcallback in procbar.gen_h is no longer needed for the version
of gnome-procbar.h that I have. cvs.gnome.org does not report that this was
fixed in CVS, however my gnome-libs "1.4.1.2.90-18" has it "fixed"
the relevant function is gnome_proc_bar_construct, which the final argument
in my version of gnome-libs is gint (*cb)()
+
+------- Additional Comments From murrayc usa net 2002-09-17 04:02 -------
+1. The latest version of gnome-libs that I can find is 1.4.1.7. So why
+are you talking about an older one?
+2. In cvs, they might be using a branch.
--__--__--
Message: 6
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net
Cc:
Date: Tue, 17 Sep 2002 12:09:10 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 93413] Changed - Gtk::TreeRowReference copyable?
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=93413
Changed by julian jabber org
--- shadow/93413 Tue Sep 17 03:49:44 2002
+++ shadow/93413.tmp.23905 Tue Sep 17 12:09:10 2002
@@ -26,6 +26,10 @@
TreeRowReference(const TreeRowReference&);
TreeRowReference& operator=(const TreeRowReference&);
So you should not be able to write code that copies it. So I don't see
how it could cause a crash. Please attempt to write some
simple-as-possible compileable example code to demonstrate your problem.
+
+------- Additional Comments From julian jabber org 2002-09-17 12:09 -------
+No, I mean that I implemented those functions as public in an attempt
+to make it copyable ;)
--__--__--
Message: 7
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net
Cc:
Date: Tue, 17 Sep 2002 12:10:41 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 93434] Changed - libgnomeui/gnome-procbar.h change causes gnomemm to not compile
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=93434
Changed by julian jabber org
--- shadow/93434 Tue Sep 17 04:02:42 2002
+++ shadow/93434.tmp.24186 Tue Sep 17 12:10:41 2002
@@ -22,6 +22,11 @@
in my version of gnome-libs is gint (*cb)()
------- Additional Comments From murrayc usa net 2002-09-17 04:02 -------
1. The latest version of gnome-libs that I can find is 1.4.1.7. So why
are you talking about an older one?
2. In cvs, they might be using a branch.
+
+------- Additional Comments From julian jabber org 2002-09-17 12:10 -------
+As I said in IRC, this is the version which came with my Red Hat beta.
+Yes, it probably is heavily patched/branched. I asked you if you
+wanted me to look and see if they had patched this function...
--__--__--
Message: 8
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net, julian jabber org
Cc:
Date: Tue, 17 Sep 2002 12:51:52 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 93413] Changed - Gtk::TreeRowReference copyable?
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=93413
Changed by murrayc usa net
--- shadow/93413 Tue Sep 17 12:09:10 2002
+++ shadow/93413.tmp.29485 Tue Sep 17 12:51:52 2002
@@ -1,13 +1,13 @@
Bug#: 93413
Product: gtkmm
Version: 2.0
OS: All
OS Details:
-Status: NEW
-Resolution:
+Status: RESOLVED
+Resolution: NOTABUG
Severity: normal
Priority: Normal
Component: TreeView
AssignedTo: gtkmm-forge lists sourceforge net
ReportedBy: julian jabber org
TargetMilestone: ---
@@ -30,6 +30,12 @@
how it could cause a crash. Please attempt to write some
simple-as-possible compileable example code to demonstrate your problem.
------- Additional Comments From julian jabber org 2002-09-17 12:09 -------
No, I mean that I implemented those functions as public in an attempt
to make it copyable ;)
+
+------- Additional Comments From murrayc usa net 2002-09-17 12:51 -------
+That was silly. They are not copyable because GTK+ does not provide
+any functions to copy them. You need to just keep it around, maybe
+using pointers. If you really want to copy it then ask the GTK+ people
+how.
--__--__--
Message: 9
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net, julian jabber org
Cc:
Date: Tue, 17 Sep 2002 12:54:27 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 93434] Changed - libgnomeui/gnome-procbar.h change causes gnomemm to not compile
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=93434
Changed by murrayc usa net
--- shadow/93434 Tue Sep 17 12:10:41 2002
+++ shadow/93434.tmp.29758 Tue Sep 17 12:54:27 2002
@@ -27,6 +27,14 @@
2. In cvs, they might be using a branch.
------- Additional Comments From julian jabber org 2002-09-17 12:10 -------
As I said in IRC, this is the version which came with my Red Hat beta.
Yes, it probably is heavily patched/branched. I asked you if you
wanted me to look and see if they had patched this function...
+
+------- Additional Comments From murrayc usa net 2002-09-17 12:54 -------
+That seems like quite an old version for the beta. Maybe you could
+report the bug to RedHat.
+
+But the latest version of gnomemm exists purely so that it can build
+with the latest version of gnome-libs, so if people can't build the
+latest gnomemm then they should just try the previous gnomemm.
--__--__--
_______________________________________________
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]