summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-03-12 18:59:40 +0000
committerCarl Hetherington <cth@carlh.net>2016-03-12 18:59:40 +0000
commita314c58874f905bd1812c77ee6c78cb71de0a62e (patch)
tree2a66052cb2741fd0532a5bc6d639e06ebf7c2f93 /src
parent8615f1dd96a75869ab1e67236739473a39dfbd0b (diff)
Include trimming.
Diffstat (limited to 'src')
-rw-r--r--src/lib/text_subtitle_content.cc1
-rw-r--r--src/wx/audio_mapping_view.cc2
-rw-r--r--src/wx/audio_panel.cc2
-rw-r--r--src/wx/colour_conversion_editor.cc2
-rw-r--r--src/wx/config_dialog.cc2
-rw-r--r--src/wx/subtitle_panel.cc2
-rw-r--r--src/wx/timecode.cc4
7 files changed, 0 insertions, 15 deletions
diff --git a/src/lib/text_subtitle_content.cc b/src/lib/text_subtitle_content.cc
index 93ac1d091..2044c3a41 100644
--- a/src/lib/text_subtitle_content.cc
+++ b/src/lib/text_subtitle_content.cc
@@ -31,7 +31,6 @@
using std::string;
using std::cout;
using boost::shared_ptr;
-using boost::lexical_cast;
std::string const TextSubtitleContent::font_id = "font";
diff --git a/src/wx/audio_mapping_view.cc b/src/wx/audio_mapping_view.cc
index 407abb503..d1c8497da 100644
--- a/src/wx/audio_mapping_view.cc
+++ b/src/wx/audio_mapping_view.cc
@@ -31,7 +31,6 @@
#include <wx/wx.h>
#include <wx/renderer.h>
#include <wx/grid.h>
-#include <boost/lexical_cast.hpp>
#include <iostream>
using std::cout;
@@ -40,7 +39,6 @@ using std::string;
using std::max;
using std::vector;
using boost::shared_ptr;
-using boost::lexical_cast;
#define INDICATOR_SIZE 16
diff --git a/src/wx/audio_panel.cc b/src/wx/audio_panel.cc
index 34d6ac885..10f855cfe 100644
--- a/src/wx/audio_panel.cc
+++ b/src/wx/audio_panel.cc
@@ -29,7 +29,6 @@
#include "lib/job_manager.h"
#include "lib/dcp_content.h"
#include <wx/spinctrl.h>
-#include <boost/lexical_cast.hpp>
#include <boost/foreach.hpp>
#include <iostream>
@@ -39,7 +38,6 @@ using std::string;
using std::list;
using std::pair;
using boost::dynamic_pointer_cast;
-using boost::lexical_cast;
using boost::shared_ptr;
using boost::optional;
diff --git a/src/wx/colour_conversion_editor.cc b/src/wx/colour_conversion_editor.cc
index 879b16b6f..aab05d71b 100644
--- a/src/wx/colour_conversion_editor.cc
+++ b/src/wx/colour_conversion_editor.cc
@@ -26,14 +26,12 @@
#include <dcp/modified_gamma_transfer_function.h>
#include <wx/spinctrl.h>
#include <wx/gbsizer.h>
-#include <boost/lexical_cast.hpp>
#include <iostream>
using std::string;
using std::cout;
using boost::shared_ptr;
using boost::dynamic_pointer_cast;
-using boost::lexical_cast;
ColourConversionEditor::ColourConversionEditor (wxWindow* parent, bool yuv)
: wxPanel (parent, wxID_ANY)
diff --git a/src/wx/config_dialog.cc b/src/wx/config_dialog.cc
index 89db8791d..7e70326dc 100644
--- a/src/wx/config_dialog.cc
+++ b/src/wx/config_dialog.cc
@@ -46,7 +46,6 @@
#include <wx/preferences.h>
#include <wx/spinctrl.h>
#include <wx/filepicker.h>
-#include <boost/lexical_cast.hpp>
#include <boost/filesystem.hpp>
#include <boost/foreach.hpp>
#include <iostream>
@@ -57,7 +56,6 @@ using std::list;
using std::cout;
using boost::bind;
using boost::shared_ptr;
-using boost::lexical_cast;
using boost::function;
using boost::optional;
diff --git a/src/wx/subtitle_panel.cc b/src/wx/subtitle_panel.cc
index 9422bb894..ad6a024e6 100644
--- a/src/wx/subtitle_panel.cc
+++ b/src/wx/subtitle_panel.cc
@@ -33,14 +33,12 @@
#include "lib/dcp_subtitle_decoder.h"
#include "lib/dcp_content.h"
#include <wx/spinctrl.h>
-#include <boost/lexical_cast.hpp>
#include <boost/foreach.hpp>
using std::vector;
using std::string;
using std::list;
using boost::shared_ptr;
-using boost::lexical_cast;
using boost::dynamic_pointer_cast;
SubtitlePanel::SubtitlePanel (ContentPanel* p)
diff --git a/src/wx/timecode.cc b/src/wx/timecode.cc
index 40a22201e..043d4bc87 100644
--- a/src/wx/timecode.cc
+++ b/src/wx/timecode.cc
@@ -20,12 +20,10 @@
#include "lib/util.h"
#include "timecode.h"
#include "wx_util.h"
-#include <boost/lexical_cast.hpp>
#include <iostream>
using std::string;
using std::cout;
-using boost::lexical_cast;
TimecodeBase::TimecodeBase (wxWindow* parent)
: wxPanel (parent)
@@ -120,5 +118,3 @@ TimecodeBase::size (wxWindow* parent)
size.SetHeight (-1);
return size;
}
-
-