summaryrefslogtreecommitdiff
path: root/plugins/SendScreenshotPlus/src/CSendImageShack.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/SendScreenshotPlus/src/CSendImageShack.h')
-rw-r--r--plugins/SendScreenshotPlus/src/CSendImageShack.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/SendScreenshotPlus/src/CSendImageShack.h b/plugins/SendScreenshotPlus/src/CSendImageShack.h
index b8f3623d61..bf8b6afbbb 100644
--- a/plugins/SendScreenshotPlus/src/CSendImageShack.h
+++ b/plugins/SendScreenshotPlus/src/CSendImageShack.h
@@ -38,18 +38,18 @@ class CSendImageShack : public CSend {
void Send();
void SendSync(bool Sync) {m_SendSync = Sync;};
- LPSTR GetURL(){return m_Url;};
- LPSTR GetError(){return mir_t2a(m_ErrorMsg);};
+ char* GetURL(){return m_Url;};
+ char* GetError(){return mir_t2a(m_ErrorMsg);};
protected:
- LPSTR m_pszFileName;
+ char* m_pszFileName;
NETLIBHTTPREQUEST m_nlhr;
NETLIBHTTPREQUEST* m_nlreply;
char m_nlheader_ContentType[64];
- LPSTR m_Url;
+ char* m_Url;
void AppendToData(const char *pszVal); //append to netlib DATA
- LPSTR m_pszContentType; //hold mimeType (does not need free)
+ char* m_pszContentType; //hold mimeType (does not need free)
void GetContentType(); //get mimeType
const char * GetTagContent(char * pszSource, const char * pszTagStart, const char * pszTagEnd);