.travis.yml + some code improvements
This commit is contained in:
parent
46974996c7
commit
e0f87bdaf0
21
.travis.yml
21
.travis.yml
|
@ -1,6 +1,8 @@
|
|||
language: c++
|
||||
language: cpp
|
||||
|
||||
compiler:
|
||||
- gcc
|
||||
|
||||
install:
|
||||
- lsb_release -a
|
||||
- uname -a
|
||||
|
@ -14,6 +16,23 @@ install:
|
|||
- sudo make install
|
||||
- cd ..
|
||||
- rm -rf finalcut
|
||||
|
||||
env:
|
||||
global:
|
||||
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
|
||||
# via the "travis encrypt" command using the project repo's public key
|
||||
- secure: "HzE/Yc8AWHTnZYFIfgKI9uFLlrKBw8L7cucRRYGzVyS1YGijjuchIeFxl4ahUCW6/pwvj4Wh9JUL1pOm+mB89XRSMSCGXN7gkFA73DB1Eq/oNdoDQbzKJeMYEP+WhPUuwTGClukRsjN48v35Nc2DJ4bGwasOjwOElZZKgNe/XrF7ok9eI1atcIl4BaxjnjNIyG9A1+MKhjUkT+FnPuqjXXz02RWD7E0IC94CK665LjdDZsnsRGf3sKBr1ZyI4uQmFmZ8W/7DxSsW1xkhtTOyY+QxQ8+CqSfiBgREwU2bPQuM/rAdAISvLk+1zMOja60B2YHTNreVi4Jj0FAQUKto9feC2QZTTrX+jv6NQEyH4XilMak9vBHKpCb6MFhHgDO4puXTur1OzGY1dtHQeQ72Ap2aAy0pPJruqeYzd9K80cSTDhqcOywt+dwja7lrPEVhqltKXFXSviLj6531to1PQBVi+Uw3uMbdo1twtkvW0SRgqq2h8OzD6SWsdI63nurQxK0qpGFnE2/N5pWxOHud6Me8G6ZBYeTRNKMrHroGoKrUr4CwgB80SKR0qj7Yga3HnJLkKwEUmRnK1gA2MD/td8IT4QAf10VI7J5P1rullZ7zK0eVnE+bHHgyd5XJkgspaXezYVPPh2hNLwREXztU3DfQgrzwjuQ4aBEGiYgcGMU="
|
||||
|
||||
addons:
|
||||
coverity_scan:
|
||||
project:
|
||||
name: "gansm/finalcut"
|
||||
description: "Build submitted via Travis CI"
|
||||
notification_email: guru.mail@muenster.de
|
||||
build_command_prepend: "autoreconf -v --install --force && ./configure --prefix=/usr && make clean"
|
||||
build_command: "make -j10 && make check"
|
||||
branch_pattern: coverity_scan
|
||||
|
||||
script:
|
||||
- autoreconf -v --install --force && ./configure --prefix=/usr && make -j10 && make check
|
||||
|
||||
|
|
|
@ -139,7 +139,7 @@ void FMenu::menu_dimension()
|
|||
|
||||
while ( iter != end )
|
||||
{
|
||||
(*iter)->setGeometry (item_X, item_Y, maxItemWidth, 1);
|
||||
(*iter)->setGeometry (item_X, item_Y, int(maxItemWidth), 1);
|
||||
item_Y++;
|
||||
|
||||
++iter;
|
||||
|
|
|
@ -92,7 +92,7 @@ void FMenuItem::init (FWidget* parent)
|
|||
hotkey = getHotkey();
|
||||
if ( hotkey )
|
||||
text_length--;
|
||||
setGeometry (1,1,text_length+2,1, false);
|
||||
setGeometry (1,1,int(text_length+2),1, false);
|
||||
|
||||
if ( parent )
|
||||
{
|
||||
|
@ -364,17 +364,19 @@ void FMenuItem::setText (FString& txt)
|
|||
hotkey = getHotkey();
|
||||
if ( hotkey )
|
||||
text_length--;
|
||||
setWidth(text_length);
|
||||
setWidth(int(text_length));
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
inline void FMenuItem::setText (const std::string& txt)
|
||||
void FMenuItem::setText (const std::string& txt)
|
||||
{
|
||||
setText (FString(txt));
|
||||
FString s = FString(txt);
|
||||
setText (s);
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
inline void FMenuItem::setText (const char* txt)
|
||||
void FMenuItem::setText (const char* txt)
|
||||
{
|
||||
setText (FString(txt));
|
||||
FString s = FString(txt);
|
||||
setText (s);
|
||||
}
|
||||
|
|
|
@ -3467,7 +3467,7 @@ FString FTerm::getAnswerbackMsg()
|
|||
|
||||
if ( raw_mode )
|
||||
{
|
||||
int n;
|
||||
ssize_t n;
|
||||
fd_set ifds;
|
||||
struct timeval tv;
|
||||
char temp[10] = {};
|
||||
|
@ -3502,7 +3502,7 @@ FString FTerm::getSecDA()
|
|||
|
||||
if ( raw_mode )
|
||||
{
|
||||
int n;
|
||||
ssize_t n;
|
||||
fd_set ifds;
|
||||
struct timeval tv;
|
||||
char temp[16] = {};
|
||||
|
|
Loading…
Reference in New Issue