summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/document-metadata.cpp
diff options
context:
space:
mode:
authorAlex Valavanis <valavanisalex@gmail.com>2012-01-03 01:11:07 +0000
committerAlex Valavanis <valavanisalex@gmail.com>2012-01-03 01:11:07 +0000
commit1c82ead814a66075e98fffdf152652452b4dda34 (patch)
tree3869812f527dc30a4ece6d43f8fc1feed7cd152d /src/ui/dialog/document-metadata.cpp
parentCleanup GSEAL issues and deprecated GtkTooltips (diff)
downloadinkscape-1c82ead814a66075e98fffdf152652452b4dda34.tar.gz
inkscape-1c82ead814a66075e98fffdf152652452b4dda34.zip
More deprecated GtkTooltips
(bzr r10827)
Diffstat (limited to 'src/ui/dialog/document-metadata.cpp')
-rw-r--r--src/ui/dialog/document-metadata.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/ui/dialog/document-metadata.cpp b/src/ui/dialog/document-metadata.cpp
index 2aebef997..2b2661bfe 100644
--- a/src/ui/dialog/document-metadata.cpp
+++ b/src/ui/dialog/document-metadata.cpp
@@ -67,7 +67,6 @@ DocumentMetadata::DocumentMetadata()
_page_metadata1(1, 1), _page_metadata2(1, 1)
{
hide();
- _tt.enable();
_getContents()->set_spacing (4);
_getContents()->pack_start(_notebook, true, true);
@@ -161,7 +160,7 @@ DocumentMetadata::build_metadata()
int row = 1;
for (entity = rdf_work_entities; entity && entity->name; entity++, row++) {
if ( entity->editable == RDF_EDIT_GENERIC ) {
- EntityEntry *w = EntityEntry::create (entity, _tt, _wr);
+ EntityEntry *w = EntityEntry::create (entity, _wr);
_rdflist.push_back (w);
Gtk::HBox *space = manage (new Gtk::HBox);
space->set_size_request (SPACE_SIZE_X, SPACE_SIZE_Y);
@@ -180,7 +179,7 @@ DocumentMetadata::build_metadata()
_page_metadata2.table().attach (*llabel, 0,3, row, row+1, Gtk::FILL, (Gtk::AttachOptions)0,0,0);
/* add license selector pull-down and URI */
++row;
- _licensor.init (_tt, _wr);
+ _licensor.init (_wr);
Gtk::HBox *space = manage (new Gtk::HBox);
space->set_size_request (SPACE_SIZE_X, SPACE_SIZE_Y);
_page_metadata2.table().attach (*space, 0,1, row, row+1, Gtk::FILL, (Gtk::AttachOptions)0,0,0);