/[svn]/qsampler/trunk/src/qsamplerOptions.cpp
ViewVC logotype

Diff of /qsampler/trunk/src/qsamplerOptions.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3848 by capela, Tue Dec 1 17:46:41 2020 UTC revision 3849 by capela, Thu Jan 7 16:18:02 2021 UTC
# Line 1  Line 1 
1  // qsamplerOptions.cpp  // qsamplerOptions.cpp
2  //  //
3  /****************************************************************************  /****************************************************************************
4     Copyright (C) 2004-2020, rncbc aka Rui Nuno Capela. All rights reserved.     Copyright (C) 2004-2021, rncbc aka Rui Nuno Capela. All rights reserved.
5     Copyright (C) 2007,2008,2015 Christian Schoenebeck     Copyright (C) 2007,2008,2015 Christian Schoenebeck
6    
7     This program is free software; you can redistribute it and/or     This program is free software; you can redistribute it and/or
# Line 36  Line 36 
36  #include <lscp/client.h>  #include <lscp/client.h>
37    
38  #ifdef CONFIG_LIBGIG  #ifdef CONFIG_LIBGIG
39    #pragma GCC diagnostic push
40    #pragma GCC diagnostic ignored "-Wunused-parameter"
41  #include <gig.h>  #include <gig.h>
42    #pragma GCC diagnostic pop
43  #endif  #endif
44    
45    
# Line 360  bool Options::parse_args ( const QString Line 363  bool Options::parse_args ( const QString
363                          out << "-static";                          out << "-static";
364                  #endif                  #endif
365                          out << '\n';                          out << '\n';
                         out << QString("%1: %2\n")  
                                 .arg(QSAMPLER_TITLE)  
                                 .arg(CONFIG_BUILD_VERSION);  
366                  #ifdef CONFIG_LIBGIG                  #ifdef CONFIG_LIBGIG
367                          out << QString("%1: %2\n")                          out << QString("%1: %2\n")
368                                  .arg(gig::libraryName().c_str())                                  .arg(gig::libraryName().c_str())
# Line 371  bool Options::parse_args ( const QString Line 371  bool Options::parse_args ( const QString
371                          out << QString("%1: %2\n")                          out << QString("%1: %2\n")
372                                  .arg(::lscp_client_package())                                  .arg(::lscp_client_package())
373                                  .arg(::lscp_client_version());                                  .arg(::lscp_client_version());
374                            out << QString("%1: %2\n")
375                                    .arg(QSAMPLER_TITLE)
376                                    .arg(CONFIG_BUILD_VERSION);
377                          return false;                          return false;
378                  }                  }
379                  else {                  else {

Legend:
Removed from v.3848  
changed lines
  Added in v.3849

  ViewVC Help
Powered by ViewVC