summaryrefslogtreecommitdiff
path: root/src/contacts-utils.vala
diff options
context:
space:
mode:
Diffstat (limited to 'src/contacts-utils.vala')
-rw-r--r--src/contacts-utils.vala46
1 files changed, 0 insertions, 46 deletions
diff --git a/src/contacts-utils.vala b/src/contacts-utils.vala
index a8042a1..9671ccc 100644
--- a/src/contacts-utils.vala
+++ b/src/contacts-utils.vala
@@ -69,52 +69,6 @@ namespace Contacts {
}
}
-public class Center : Bin {
- public int max_width { get; set; }
-
- public override void get_preferred_height (out int minimum_height, out int natural_height) {
- var child = get_child ();
- if (child != null) {
- int min;
- int nat;
- child.get_preferred_height (out min, out nat);
- minimum_height = min;
- natural_height = nat;
- } else {
- minimum_height = -1;
- natural_height = -1;
- }
- }
-
- public override void get_preferred_width (out int minimum_width, out int natural_width) {
- var child = get_child ();
- if (child != null) {
- int min;
- int nat;
- child.get_preferred_width (out min, out nat);
- minimum_width = min;
- natural_width = nat;
- } else {
- minimum_width = -1;
- natural_width = -1;
- }
- }
-
- public override void size_allocate (Gtk.Allocation allocation) {
- Gtk.Allocation new_alloc;
-
- set_allocation (allocation);
- new_alloc = allocation;
- if (allocation.width > this.max_width) {
- new_alloc.width = this.max_width;
- new_alloc.x = allocation.x;
- }
-
- var child = get_child ();
- child.size_allocate (new_alloc);
- }
-}
-
namespace Contacts.Utils {
public void compose_mail (string email) {
var mailto_uri = "mailto:" + Uri.escape_string (email, "@" , false);