diff options
| author | nyamatongwe <unknown> | 2010-08-05 13:03:36 +1000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2010-08-05 13:03:36 +1000 | 
| commit | 63a2f56fa532bcbac8eb65119c3ebbb5c942328d (patch) | |
| tree | 4a4e304f4d5e14973cd6463b363f2f9d15133508 | |
| parent | 402f98fb9dad0679edda351830739d7b93988c96 (diff) | |
| download | scintilla-mirror-63a2f56fa532bcbac8eb65119c3ebbb5c942328d.tar.gz | |
Removal of line end white space.
| -rw-r--r-- | gtk/ScintillaGTK.cxx | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx index f87add446..b7fa93d1a 100644 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -716,7 +716,7 @@ static char *ConvertText(int *lenResult, char *s, size_t len, const char *charSe  		size_t conversions = conv.Convert(&pin, &inLeft, &pout, &outLeft);  		if (conversions == ((size_t)(-1))) {  			if (!silent) -				fprintf(stderr, "iconv %s->%s failed for %s\n",  +				fprintf(stderr, "iconv %s->%s failed for %s\n",  					charSetSource, charSetDest, static_cast<char *>(s));  			delete []destForm;  			destForm = 0; @@ -881,7 +881,7 @@ bool ScintillaGTK::SetIdle(bool on) {  		if (!idler.state) {  			idler.state = true;  			idler.idlerID = reinterpret_cast<IdlerID>( -				g_idle_add_full(G_PRIORITY_DEFAULT_IDLE,  +				g_idle_add_full(G_PRIORITY_DEFAULT_IDLE,  					reinterpret_cast<GSourceFunc>(IdleCallback), this, NULL));  		}  	} else { @@ -2343,7 +2343,7 @@ void ScintillaGTK::QueueStyling(int upTo) {  	if (!styleNeeded.active) {  		// Only allow one style needed to be queued  		styleNeeded.active = true; -		g_idle_add_full(G_PRIORITY_HIGH_IDLE,  +		g_idle_add_full(G_PRIORITY_HIGH_IDLE,  			reinterpret_cast<GSourceFunc>(StyleIdle), this, NULL);  	}  }  | 
