aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJorge Arellano Cid <jcid@dillo.org>2011-05-27 13:27:11 -0400
committerJorge Arellano Cid <jcid@dillo.org>2011-05-27 13:27:11 -0400
commit037c25162ba7a36e600f4e1366a206e4abf05020 (patch)
tree729c706e72c8d9b4a21e13bccde27195da8efee2
parent9b72578eab16832c7bf70984fb528339a3994e32 (diff)
Make sources fit in 80 columns
-rw-r--r--dw/fltkplatform.cc3
-rw-r--r--dw/fltkui.hh3
-rw-r--r--dw/image.cc6
-rw-r--r--dw/layout.hh3
4 files changed, 9 insertions, 6 deletions
diff --git a/dw/fltkplatform.cc b/dw/fltkplatform.cc
index 70d9cfd2..00e1d07e 100644
--- a/dw/fltkplatform.cc
+++ b/dw/fltkplatform.cc
@@ -42,7 +42,8 @@ container::typed::HashTable <dw::core::style::FontAttrs,
FltkFont> (false, false);
container::typed::HashTable <lout::object::ConstString,
- FltkFont::FontFamily> *FltkFont::systemFonts = NULL;
+ FltkFont::FontFamily> *FltkFont::systemFonts =
+ NULL;
FltkFont::FontFamily FltkFont::standardFontFamily;
diff --git a/dw/fltkui.hh b/dw/fltkui.hh
index 074a6166..daddfb78 100644
--- a/dw/fltkui.hh
+++ b/dw/fltkui.hh
@@ -402,7 +402,8 @@ private:
public:
Group (FltkRadioButtonResource *radioButtonResource);
- inline lout::container::typed::Iterator <FltkRadioButtonResource> iterator ()
+ inline lout::container::typed::Iterator <FltkRadioButtonResource>
+ iterator ()
{
return list->iterator ();
}
diff --git a/dw/image.cc b/dw/image.cc
index 23e2dc84..827cd753 100644
--- a/dw/image.cc
+++ b/dw/image.cc
@@ -315,8 +315,8 @@ bool Image::buttonPressImpl (core::EventButton *event)
{
bool ret = false;
- currLink = mapList? mapList->link (mapKey, contentX(event),contentY(event)):
- getStyle()->x_link;
+ currLink = mapList ? mapList->link(mapKey,contentX(event),contentY(event)) :
+ getStyle()->x_link;
if (event->button == 3){
(void)layout->emitLinkPress(this, currLink, getStyle()->x_img, -1, -1,
event);
@@ -330,7 +330,7 @@ bool Image::buttonPressImpl (core::EventButton *event)
bool Image::buttonReleaseImpl (core::EventButton *event)
{
- currLink = mapList ? mapList->link (mapKey, contentX(event),contentY(event)):
+ currLink = mapList ? mapList->link(mapKey,contentX(event),contentY(event)) :
getStyle()->x_link;
if (clicking) {
int x = isMap ? contentX(event) : -1;
diff --git a/dw/layout.hh b/dw/layout.hh
index dc9bf227..0ac1ea5b 100644
--- a/dw/layout.hh
+++ b/dw/layout.hh
@@ -152,7 +152,8 @@ private:
bool scrollIdleNotInterrupted;
/* Anchors of the widget tree */
- lout::container::typed::HashTable <lout::object::String, Anchor> *anchorsTable;
+ lout::container::typed::HashTable <lout::object::String, Anchor>
+ *anchorsTable;
SelectionState selectionState;
FindtextState findtextState;