Update README.md + FString code improvements

This commit is contained in:
Markus Gans 2015-10-05 01:01:45 +02:00
parent a8930282c8
commit 5f86dad265
2 changed files with 12 additions and 3 deletions

View File

@ -1,9 +1,18 @@
### Building and code analysis
*Travis CI:*<br /> *Travis CI:*<br />
&#160;&#160;&#160;&#160;&#160;[![Build Status](https://travis-ci.org/gansm/finalcut.svg?branch=master)](https://travis-ci.org/gansm/finalcut) &#160;&#160;&#160;&#160;&#160;[![Build Status](https://travis-ci.org/gansm/finalcut.svg?branch=master)](https://travis-ci.org/gansm/finalcut) <br />
*Coverity Scan:*<br /> *Coverity Scan:*<br />
&#160;&#160;&#160;&#160;&#160;[![Coverity Scan Status](https://scan.coverity.com/projects/6508/badge.svg)](https://scan.coverity.com/projects/6508) &#160;&#160;&#160;&#160;&#160;[![Coverity Scan Status](https://scan.coverity.com/projects/6508/badge.svg)](https://scan.coverity.com/projects/6508)
### Installation
```
> git clone git://github.com/gansm/finalcut.git
> cd finalcut
> ./configure --prefix=/usrX
> make
> su -c "make install"
```
The Final Cut The Final Cut
============= =============
The Final Cut is a class library and widget toolkit with full mouse support for creating a text-based user interface. The library supports the programmer to develop an application for the text console. It allows the simultaneous handling of multiple windows on the screen. The Final Cut is a class library and widget toolkit with full mouse support for creating a text-based user interface. The library supports the programmer to develop an application for the text console. It allows the simultaneous handling of multiple windows on the screen.

View File

@ -2161,7 +2161,7 @@ bool FString::includes (const char* s)
if ( ! wc_string ) if ( ! wc_string )
return false; return false;
ret = bool(wcsstr(string, wc_string) != 0); ret = bool(wcsstr(string, wc_string) != 0);
if ( *wc_string ) if ( wc_string )
delete[] wc_string; delete[] wc_string;
return (ret); return (ret);
} }