[vlmc-devel] Vlmc-devel Digest, Vol 56, Issue 15
T Knoll
tryst2020 at gmail.com
Thu Mar 30 14:30:27 CEST 2017
Does anyone know how to compile the source code?
Sent from my iPhone
> On Mar 30, 2017, at 2:44 AM, vlmc-devel-request at videolan.org wrote:
>
> Send Vlmc-devel mailing list submissions to
> vlmc-devel at videolan.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
> https://mailman.videolan.org/listinfo/vlmc-devel
> or, via email, send a message with subject or body 'help' to
> vlmc-devel-request at videolan.org
>
> You can reach the person managing the list at
> vlmc-devel-owner at videolan.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Vlmc-devel digest..."
>
>
> Today's Topics:
>
> 1. [PATCH] WelcomePage: Add QMessageeBox to Project Wizard
> noticing user when project file not found (Hieu Pham)
> 2. [PATCH] WelcomePage: Add QMessageeBox to Project Wizard
> noticing user when project file not found (Hieu Pham)
> 3. Re: [PATCH] WelcomePage: Add QMessageeBox to Project Wizard
> noticing user when project file not found (yikei lu)
> 4. [PATCH] WelcomePage: Add QMessageeBox to Project Wizard
> noticing user when project file not found (Hieu Pham)
> 5. PreferenceWidget: Use C++11 style for-loop (Yikai Lu)
> 6. WelcomePage: Add QMessageeBox to Project Wizard noticing user
> when project file not found (Hieu Pham)
> 7. Re: [PATCH] WelcomePage: Add QMessageeBox to Project Wizard
> noticing user when project file not found (yikei lu)
> 8. [PATCH] Makefile.am: Add missing CrashHandler recipe
> (Abhimanyu Singh Gaur)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Wed, 29 Mar 2017 21:45:26 -0500
> From: Hieu Pham <phamhuuquanghieu at gmail.com>
> To: vlmc-devel at videolan.org
> Subject: [vlmc-devel] [PATCH] WelcomePage: Add QMessageeBox to Project
> Wizard noticing user when project file not found
> Message-ID: <20170330024526.23552-1-phamhuuquanghieu at gmail.com>
>
> ---
> src/Gui/wizard/WelcomePage.cpp | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/src/Gui/wizard/WelcomePage.cpp b/src/Gui/wizard/WelcomePage.cpp
> index 0b95dc1..b4c6de9 100644
> --- a/src/Gui/wizard/WelcomePage.cpp
> +++ b/src/Gui/wizard/WelcomePage.cpp
> @@ -106,6 +106,13 @@ WelcomePage::validatePage()
> "the list.\nThen click next to continue..." ) );
> return false;
> }
> + else if ( QFile::exists( *m_projectPath ) == false )
> + {
> + QMessageBox::warning( this, tr( "Warning" ),
> + tr( "Sorry, we couldn't find your file. Was it moved, renamed, or deleted?" )
> + + "\n" + m_projectPath->toUtf8() );
> + return false;
> + }
> return true;
> }
> return true;
> --
> 2.9.3
>
>
>
> ------------------------------
>
> Message: 2
> Date: Wed, 29 Mar 2017 21:52:28 -0500
> From: Hieu Pham <phamhuuquanghieu at gmail.com>
> To: vlmc-devel at videolan.org
> Subject: [vlmc-devel] [PATCH] WelcomePage: Add QMessageeBox to Project
> Wizard noticing user when project file not found
> Message-ID: <20170330025228.6317-1-phamhuuquanghieu at gmail.com>
>
> ---
> src/Gui/wizard/WelcomePage.cpp | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/src/Gui/wizard/WelcomePage.cpp b/src/Gui/wizard/WelcomePage.cpp
> index 0b95dc1..2d4da78 100644
> --- a/src/Gui/wizard/WelcomePage.cpp
> +++ b/src/Gui/wizard/WelcomePage.cpp
> @@ -106,6 +106,14 @@ WelcomePage::validatePage()
> "the list.\nThen click next to continue..." ) );
> return false;
> }
> + else if ( QFile::exists( *m_projectPath ) == false )
> + {
> + QMessageBox::warning( this, tr( "Warning" ),
> + QString( "%1\n%2" )
> + .arg( tr( "Sorry, we couldn't find your file. Was it moved, renamed, or deleted?" ) )
> + .arg( QString( m_projectPath->toUtf8() ) ) );
> + return false;
> + }
> return true;
> }
> return true;
> --
> 2.9.3
>
>
>
> ------------------------------
>
> Message: 3
> Date: Wed, 29 Mar 2017 21:53:58 -0500
> From: yikei lu <luyikei.qmltu at gmail.com>
> To: Mailing list for vlmc developers <vlmc-devel at videolan.org>
> Subject: Re: [vlmc-devel] [PATCH] WelcomePage: Add QMessageeBox to
> Project Wizard noticing user when project file not found
> Message-ID:
> <CANCzX9Hv_qzOGunD-mO1W+dS-O0jEGmJ5YxAmuny-b8X_U6aCQ at mail.gmail.com>
> Content-Type: text/plain; charset=UTF-8
>
>> On Wed, Mar 29, 2017 at 9:52 PM, Hieu Pham <phamhuuquanghieu at gmail.com> wrote:
>> ---
>> src/Gui/wizard/WelcomePage.cpp | 8 ++++++++
>> 1 file changed, 8 insertions(+)
>>
>> diff --git a/src/Gui/wizard/WelcomePage.cpp b/src/Gui/wizard/WelcomePage.cpp
>> index 0b95dc1..2d4da78 100644
>> --- a/src/Gui/wizard/WelcomePage.cpp
>> +++ b/src/Gui/wizard/WelcomePage.cpp
>> @@ -106,6 +106,14 @@ WelcomePage::validatePage()
>> "the list.\nThen click next to continue..." ) );
>> return false;
>> }
>> + else if ( QFile::exists( *m_projectPath ) == false )
>> + {
>> + QMessageBox::warning( this, tr( "Warning" ),
>> + QString( "%1\n%2" )
> QStringLiteral ?
>
>> + .arg( tr( "Sorry, we couldn't find your file. Was it moved, renamed, or deleted?" ) )
>> + .arg( QString( m_projectPath->toUtf8() ) ) );
>
> Just m_projectPath? Also could you merge these two patches?
> Thanks!
>
>> + return false;
>> + }
>> return true;
>> }
>> return true;
>> --
>> 2.9.3
>>
>> _______________________________________________
>> Vlmc-devel mailing list
>> Vlmc-devel at videolan.org
>> https://mailman.videolan.org/listinfo/vlmc-devel
>
>
> ------------------------------
>
> Message: 4
> Date: Wed, 29 Mar 2017 22:06:57 -0500
> From: Hieu Pham <phamhuuquanghieu at gmail.com>
> To: vlmc-devel at videolan.org
> Subject: [vlmc-devel] [PATCH] WelcomePage: Add QMessageeBox to Project
> Wizard noticing user when project file not found
> Message-ID: <20170330030657.29996-1-phamhuuquanghieu at gmail.com>
>
> ---
> src/Gui/wizard/WelcomePage.cpp | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/src/Gui/wizard/WelcomePage.cpp b/src/Gui/wizard/WelcomePage.cpp
> index 0b95dc1..d216382 100644
> --- a/src/Gui/wizard/WelcomePage.cpp
> +++ b/src/Gui/wizard/WelcomePage.cpp
> @@ -106,6 +106,14 @@ WelcomePage::validatePage()
> "the list.\nThen click next to continue..." ) );
> return false;
> }
> + else if ( QFile::exists( *m_projectPath ) == false )
> + {
> + QMessageBox::warning( this, tr( "Warning" ),
> + QStringLiteral( "%1\n%2" )
> + .arg( tr( "Sorry, we couldn't find your file. Was it moved, renamed, or deleted?" ) )
> + .arg( *m_projectPath ) );
> + return false;
> + }
> return true;
> }
> return true;
> --
> 2.9.3
>
>
>
> ------------------------------
>
> Message: 5
> Date: Thu, 30 Mar 2017 08:00:41 +0200
> From: Yikai Lu <git at videolan.org>
> To: vlmc-devel at videolan.org
> Subject: [vlmc-devel] PreferenceWidget: Use C++11 style for-loop
> Message-ID: <20170330060042.382CC1730D5 at albiero.videolan.org>
> Content-Type: text/plain; charset=UTF-8
>
> vlmc | branch: master | Yikai Lu <luyikei.qmltu at gmail.com> | Fri Mar 10 15:20:32 2017 -0600| [945bfd62d9eea602dd4e8738b97134aa72f502e6] | committer: Yikai Lu
>
> PreferenceWidget: Use C++11 style for-loop
>
>> https://code.videolan.org/videolan/vlmc/commit/945bfd62d9eea602dd4e8738b97134aa72f502e6
> ---
>
> src/Gui/settings/PreferenceWidget.cpp | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/src/Gui/settings/PreferenceWidget.cpp b/src/Gui/settings/PreferenceWidget.cpp
> index e13a021..d35bb5e 100644
> --- a/src/Gui/settings/PreferenceWidget.cpp
> +++ b/src/Gui/settings/PreferenceWidget.cpp
> @@ -55,7 +55,7 @@ PreferenceWidget::PreferenceWidget( const QString &name, const char *label, Sett
> QFormLayout *layout = new QFormLayout( container );
> layout->setFieldGrowthPolicy( QFormLayout::AllNonFixedFieldsGrow );
>
> - foreach ( SettingValue* s, settingList )
> + for ( auto s : settingList )
> {
> //Do not display private variables
> if ( ( s->flags() & SettingValue::Private ) != 0 )
>
>
>
> ------------------------------
>
> Message: 6
> Date: Thu, 30 Mar 2017 08:00:42 +0200
> From: Hieu Pham <git at videolan.org>
> To: vlmc-devel at videolan.org
> Subject: [vlmc-devel] WelcomePage: Add QMessageeBox to Project Wizard
> noticing user when project file not found
> Message-ID: <20170330060043.915A817345F at albiero.videolan.org>
> Content-Type: text/plain; charset=UTF-8
>
> vlmc | branch: master | Hieu Pham <phamhuuquanghieu at gmail.com> | Wed Mar 29 22:06:57 2017 -0500| [4ca8e32fa17832cb5c96039e4f1cf76df26026c4] | committer: Yikai Lu
>
> WelcomePage: Add QMessageeBox to Project Wizard noticing user when project file not found
>
>> https://code.videolan.org/videolan/vlmc/commit/4ca8e32fa17832cb5c96039e4f1cf76df26026c4
> ---
>
> src/Gui/wizard/WelcomePage.cpp | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/src/Gui/wizard/WelcomePage.cpp b/src/Gui/wizard/WelcomePage.cpp
> index 0b95dc1..d216382 100644
> --- a/src/Gui/wizard/WelcomePage.cpp
> +++ b/src/Gui/wizard/WelcomePage.cpp
> @@ -106,6 +106,14 @@ WelcomePage::validatePage()
> "the list.\nThen click next to continue..." ) );
> return false;
> }
> + else if ( QFile::exists( *m_projectPath ) == false )
> + {
> + QMessageBox::warning( this, tr( "Warning" ),
> + QStringLiteral( "%1\n%2" )
> + .arg( tr( "Sorry, we couldn't find your file. Was it moved, renamed, or deleted?" ) )
> + .arg( *m_projectPath ) );
> + return false;
> + }
> return true;
> }
> return true;
>
>
>
> ------------------------------
>
> Message: 7
> Date: Thu, 30 Mar 2017 01:01:08 -0500
> From: yikei lu <luyikei.qmltu at gmail.com>
> To: Mailing list for vlmc developers <vlmc-devel at videolan.org>
> Subject: Re: [vlmc-devel] [PATCH] WelcomePage: Add QMessageeBox to
> Project Wizard noticing user when project file not found
> Message-ID:
> <CANCzX9FGHS3igkHV9ybAW-MgcTAJjXHsWovQecuekkEp-=dLrQ at mail.gmail.com>
> Content-Type: text/plain; charset=UTF-8
>
> Applied thanks!
>
>> On Wed, Mar 29, 2017 at 10:06 PM, Hieu Pham <phamhuuquanghieu at gmail.com> wrote:
>> ---
>> src/Gui/wizard/WelcomePage.cpp | 8 ++++++++
>> 1 file changed, 8 insertions(+)
>>
>> diff --git a/src/Gui/wizard/WelcomePage.cpp b/src/Gui/wizard/WelcomePage.cpp
>> index 0b95dc1..d216382 100644
>> --- a/src/Gui/wizard/WelcomePage.cpp
>> +++ b/src/Gui/wizard/WelcomePage.cpp
>> @@ -106,6 +106,14 @@ WelcomePage::validatePage()
>> "the list.\nThen click next to continue..." ) );
>> return false;
>> }
>> + else if ( QFile::exists( *m_projectPath ) == false )
>> + {
>> + QMessageBox::warning( this, tr( "Warning" ),
>> + QStringLiteral( "%1\n%2" )
>> + .arg( tr( "Sorry, we couldn't find your file. Was it moved, renamed, or deleted?" ) )
>> + .arg( *m_projectPath ) );
>> + return false;
>> + }
>> return true;
>> }
>> return true;
>> --
>> 2.9.3
>>
>> _______________________________________________
>> Vlmc-devel mailing list
>> Vlmc-devel at videolan.org
>> https://mailman.videolan.org/listinfo/vlmc-devel
>
>
> ------------------------------
>
> Message: 8
> Date: Thu, 30 Mar 2017 13:12:54 +0530
> From: Abhimanyu Singh Gaur <gaur.1 at iitj.ac.in>
> To: vlmc-devel at videolan.org
> Cc: Abhimanyu Singh Gaur <gaur.1 at iitj.ac.in>
> Subject: [vlmc-devel] [PATCH] Makefile.am: Add missing CrashHandler
> recipe
> Message-ID: <20170330074254.5352-1-gaur.1 at iitj.ac.in>
>
> CrashHandler uses Qt StaticMetaObject but earlier it was being compiled without generating a .moc.cpp file first, giving build errors.
> ---
> Makefile.am | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/Makefile.am b/Makefile.am
> index 8d81dd7..b9adfa9 100644
> --- a/Makefile.am
> +++ b/Makefile.am
> @@ -361,7 +361,11 @@ vlmc_UI = \
>
> if HAVE_CRASHHANDLER
> vlmc_UI += src/Gui/ui/CrashHandler.ui
> -vlmc_SOURCES += src/Gui/widgets/CrashHandler.cpp
> +vlmc_SOURCES += \
> + src/Gui/widgets/CrashHandler.h \
> + src/Gui/widgets/CrashHandler.cpp \
> + $(NULL)
> +nodist_vlmc_SOURCES += src/Gui/widgets/CrashHandler.moc.cpp
> if HAVE_WIN32
> vlmc_SOURCES += src/Tools/Win32BacktraceGenerator.cpp
> else
> --
> 2.9.3
>
>
>
> ------------------------------
>
> Subject: Digest Footer
>
> _______________________________________________
> Vlmc-devel mailing list
> Vlmc-devel at videolan.org
> https://mailman.videolan.org/listinfo/vlmc-devel
>
>
> ------------------------------
>
> End of Vlmc-devel Digest, Vol 56, Issue 15
> ******************************************
More information about the Vlmc-devel
mailing list