Kaydet (Commit) f6f41960 authored tarafından Miklos Vajna's avatar Miklos Vajna

writerfilter: clean up two 'using' statement from header files

Change-Id: I47f3d0c68668d03db3c5f3187414833aa3097424
üst c623612b
...@@ -28,12 +28,11 @@ ...@@ -28,12 +28,11 @@
namespace writerfilter namespace writerfilter
{ {
using namespace ::std;
class QNameToString class QNameToString
{ {
typedef boost::shared_ptr<QNameToString> Pointer_t; typedef boost::shared_ptr<QNameToString> Pointer_t;
typedef map < Id, string > Map; typedef std::map < Id, string > Map;
static Pointer_t pInstance; static Pointer_t pInstance;
...@@ -59,7 +58,7 @@ class SprmIdToString ...@@ -59,7 +58,7 @@ class SprmIdToString
static Pointer_t pInstance; static Pointer_t pInstance;
map<sal_uInt32, string> mMap; std::map<sal_uInt32, string> mMap;
protected: protected:
/** /**
...@@ -70,7 +69,7 @@ protected: ...@@ -70,7 +69,7 @@ protected:
public: public:
static Pointer_t Instance(); static Pointer_t Instance();
#ifdef DEBUG_LOGGING #ifdef DEBUG_LOGGING
string operator()(sal_uInt32 nId); std::string operator()(sal_uInt32 nId);
#endif #endif
}; };
......
...@@ -38,8 +38,6 @@ ...@@ -38,8 +38,6 @@
namespace writerfilter namespace writerfilter
{ {
using namespace ::std;
/** /**
Class to handle events generated by TableManager::resolveCurrentTable Class to handle events generated by TableManager::resolveCurrentTable
*/ */
...@@ -132,7 +130,7 @@ class TableManager ...@@ -132,7 +130,7 @@ class TableManager
/** /**
properties of the current table properties of the current table
*/ */
stack<PropertiesPointer> mTableProps; std::stack<PropertiesPointer> mTableProps;
/** /**
true if at the end of a row true if at the end of a row
...@@ -407,7 +405,7 @@ private: ...@@ -407,7 +405,7 @@ private:
for each level of nested tables there is one frame in the stack for each level of nested tables there is one frame in the stack
*/ */
stack<typename TableData<T, PropertiesPointer>::Pointer_t > mTableDataStack; std::stack<typename TableData<T, PropertiesPointer>::Pointer_t > mTableDataStack;
typename RowData<T, PropertiesPointer>::Pointer_t mpUnfinishedRow; typename RowData<T, PropertiesPointer>::Pointer_t mpUnfinishedRow;
bool mbKeepUnfinishedRow; bool mbKeepUnfinishedRow;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment