[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#166004: marked as done (libzvt2.0-dev: size arguments are ignored)



Your message dated Wed, 23 Apr 2008 21:06:12 +0100
with message-id <200804232006.m3NK6C7Y003910@kmos.homeip.net>
and subject line libzvt has been removed from Debian, closing #166004
has caused the Debian Bug report #166004,
regarding libzvt2.0-dev: size arguments are ignored
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
166004: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=166004
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: libzvt2.0-dev
Version: 2.0.1cvs20021009-2
Severity: normal
Tags: sid

Hi,

I'm using a zvt widget inside another application. Whether I create the
widget with a specified size or set it's size after creation, it fails to
obey those settings. A small sample program which shows the behaviour is
included below. The resulting window always contains a 1 by 1 character
term widget.
Removing the zvt_term_set_size call, moving it around to any place from
just after zvt creation to right before gtk_main, leaving out the size
request upon creation (using plain zvt_term_new) doesn't matter a bit.

Oh, btw, you should also build the API reference for libzvt; a library
without it's documentation is of little worth to developers.


Regards,

Filip

*****
#include <gtk/gtk.h>
#include <libzvt/libzvt.h>

void
destroy (GtkWidget* widget, gpointer data) {
	gtk_main_quit ();
}

int
main (int argc, char* argv[]) {
	GtkWidget *term, *win;

	gtk_init (&argc, &argv);

	win = gtk_window_new (GTK_WINDOW_TOPLEVEL);
	g_signal_connect (G_OBJECT (win), "destroy", G_CALLBACK (destroy), NULL);
	gtk_container_set_border_width (GTK_CONTAINER (win), 10);

	term = zvt_term_new_with_size (80, 24);
	zvt_term_set_size (ZVT_TERM (term), 80, 24);
	gtk_widget_show (term);
	gtk_container_add (GTK_CONTAINER (win), term);

	gtk_widget_show (win);
	gtk_main ();

	return 0;
}
*****

-- System Information:
Debian Release: testing/unstable
Architecture: i386
Kernel: Linux orion 2.4.17-18.2 #3 Tue Jan 8 17:34:46 CET 2002 i686
Locale: LANG=C, LC_CTYPE=C

-- 
Unix is user friendly ...  It's just picky about its friends.


--- End Message ---
--- Begin Message ---
Version: 2.0.1cvs20021009-5+rm

The libzvt package has been removed from Debian testing, unstable and
experimental, so I am now closing the bugs that were still opened
against it.

For more information about this package's removal, read
http://bugs.debian.org/195969 . That bug might give the reasons why
this package was removed, and suggestions of possible replacements.

Don't hesitate to reply to this mail if you have any question.

Thank you for your contribution to Debian.

--
Marco Rodrigues
http://Marco.Tondela.org


--- End Message ---

Reply to: