Overview
Examples
Screenshots
Comparisons
Applications
Download
Documentation
Tutorials
Bazaar
Status & Roadmap
FAQ
Authors & License
Forums
Funding Ultimate++
Search on this site
Search in forums












SourceForge.net Logo
Home » U++ Library support » U++ Library : Other (not classified elsewhere) » Smtp: compiling error in smtp.h
Smtp: compiling error in smtp.h [message #39964] Sat, 18 May 2013 14:34 Go to previous message
Alboni is currently offline  Alboni
Messages: 214
Registered: January 2012
Location: Deventer, Netherlands
Experienced Member
	Smtp&      AddHeader(const String& text)                      { add_header << text << "\r\n"; }
	Smtp&      AddHeader(const char *id, const String& txt)       { add_header << id << ": " << txt << "\r\n"; }

should be:

	Smtp&      AddHeader(const String& text)                      { add_header << text << "\r\n"; return *this; }
	Smtp&      AddHeader(const char *id, const String& txt)       { add_header << id << ": " << txt << "\r\n"; return *this; }


(version 5485)
 
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: [FIXED] Memory leak in FreeType.
Next Topic: [FIXED] FC_WEIGHT is too big.
Goto Forum:
  


Current Time: Fri Apr 19 20:08:41 CEST 2024

Total time taken to generate the page: 0.03473 seconds