~ubuntu-branches/ubuntu/lucid/rtorrent/lucid

« back to all changes in this revision

Viewing changes to src/ui/element_text.h

  • Committer: Bazaar Package Importer
  • Author(s): Jose Luis Rivas
  • Date: 2007-12-16 19:48:29 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20071216194829-uq7srtp6qgq2o5vf
Tags: 0.7.9-1
* debian/control:
 + Specified minimum libxmlrpc-c3 version to >=1.06. (Closes: #449271)
 + Build-depends on libtorrent updated to 0.11.9.
* debian/rules:
 + Added `-fno-strict-aliasing`. (Closes: #453100)
* debian/control:
 + Updated to Standards-Version 3.7.3, no modifications needed.
* New rtorrent.rc shipped is up-to-date. (Closes: #448998)

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
#ifndef RTORRENT_UI_ELEMENT_TEXT_H
38
38
#define RTORRENT_UI_ELEMENT_TEXT_H
39
39
 
40
 
#include <sigc++/slot.h>
 
40
#include <sigc++/functors/slot.h>
41
41
 
42
42
#include "core/download.h"
43
43
#include "display/text_element_string.h"
95
95
                                  text_element_wrapper entry3, text_element_wrapper entry4,
96
96
                                  text_element_wrapper entry5, text_element_wrapper entry6);
97
97
 
98
 
  void                set_column(unsigned int column)     { m_column = column; }
 
98
  void                set_column(unsigned int column)            { m_column = column; }
 
99
  void                set_error_handler(display::TextElement* t) { m_window->set_error_handler(t); }
99
100
 
100
 
  extent_type         column_width() const                { return m_columnWidth; }
101
 
  void                set_column_width(extent_type width) { m_columnWidth = width; }
 
101
  extent_type         column_width() const                       { return m_columnWidth; }
 
102
  void                set_column_width(extent_type width)        { m_columnWidth = width; }
102
103
 
103
104
private:
104
105
  WindowText*         m_window;