19.06.2014 00:22, Mariusz Wojcik wrote:
>> I don't see basket.exe file, have you forgotten to include it? ;)
> No, I didn't know that my magic spell hadn't worked ;-).
> [Here](http://1drv.ms/1nki2Xm) is the new
> version with the basket binary in it.

Good! But I can see that the tag icons are missing (they are to be 
installed from tags/ to share/icons/*/actions/). Furthermore, you should 
try to build the latest code from trunk (the current branch is 
"basket-gleb" now, it will be moved to "master" later).

BTW it seems that gnupg v1.x is supposed to be built using MinGW. So we 
have to either release without encryption or rebuild using mingw. And 
probably this version is used:
http://sourceforge.net/projects/kde-windows/files/mingw/


>> That's excellent! Can you summarize the adjustments you had to make to
>> source code and build configuration, so that I can commit them?
>
> # Build Configuration
>
> I use for this Build Configuration MS Visual C++ 2010 because I cannot
> be sure which exact
> MinGW version compiled KDE. So let's go ahead with installing KDE.
> First you have to
> download the KDE4 Windows Installer [1]. Once it's downloaded I
> started it and decided on
> the third page for these following options:
> * Install Mode: Package Manager
> * Compiler Mode: MSVC 2010 32 Bit
>
> After that I installed following packages:
> kde-runtime-vc100 (Bin)
> kde-workspace-vc100 (Bin)
> kdelibs-vc100 (Bin, Devel)
> qt-vc100 (Bin, Devel)
> phonon-vc100 (Bin, Devel)
> soprano-vc100 (Bin, Devel)
> oxygen-icons-vc100 (Bin)
>
> Outside of the KDE Installer are the dependencys [CMake](http://cmake.org/) 
> and
> [Automoc4](git://anongit.kde.org/automoc.git). I don't think they're
> heavy to get.
>
> Greetings,
> Mariusz Wojcik
>
> [1]: 
> http://download.kde.org/stable/kdewin/installer/kdewin-installer-gui-latest.exe
>
> # The only needed adjustements to the source code
>
> # Patch
> # =====
> diff --git a/src/basketscene.cpp b/src/basketscene.cpp
> index 5904d0b..b36f283 100644
> --- a/src/basketscene.cpp
> +++ b/src/basketscene.cpp
> @@ -4691,10 +4691,12 @@ Note* BasketScene::lastNoteShownInStack()
>       return last;
>   }
>
> +/*
> +Looks unneeded and MSVC 2010 cannot compile with this function
>   inline int abs(int n)
>   {
>       return (n < 0 ? -n : n);
> -}
> +}*/
>
>   Note* BasketScene::noteOn(NoteOn side)
>   {
> diff --git a/src/bnpview.cpp b/src/bnpview.cpp
> index 97f9b4b..e57c0f7 100644
> --- a/src/bnpview.cpp
> +++ b/src/bnpview.cpp
> @@ -180,8 +180,11 @@ void BNPView::lateInit()
>               if (Global::mainWindow())
> Global::mainWindow()->setShown(!Settings::startDocked());
>           }
>       }
> +/*
> +Commented because compiling fails with MSVC 2010 due to the invalid
> preprocessor #warning
>   #else
>       #warning Proper fix for the systray problem
> +*/
>   #endif
>
>
> diff --git a/src/note.cpp b/src/note.cpp
> index 8aa7279..b1cbd31 100644
> --- a/src/note.cpp
> +++ b/src/note.cpp
> @@ -397,7 +397,7 @@ void Note::selectIn(const QRectF &rect, bool
> invertSelection, bool unselectOther
>       if (invertSelection) {
>           if (m_wasInLastSelectionRect == intersects)
>               toSelect = isSelected();
> -        else if (intersects xor m_wasInLastSelectionRect)
> +        else if (intersects ^ m_wasInLastSelectionRect)
>               toSelect = !isSelected();// xor intersects;
>       }
>       setSelected(toSelect);
> @@ -765,8 +765,10 @@ Note::Zone Note::zoneAt(const QPointF &pos, bool toAdd)
>           return Link;
>
>       qreal customZone = content()->zoneAt(pos - QPointF(contentX(),
> NOTE_MARGIN));
> +/*  Commented because compiling fails with MSVC 2010 due to a strange
> casting problem
>       if (customZone)
>           return (Note::Zone)customZone;
> + */
>
>       return Content;
>   }
>

------------------------------------------------------------------------------
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft
_______________________________________________
Basket-devel mailing list
Basket-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/basket-devel

Reply via email to