need help starting kde plasma-mobile

Paul S paulatgm at gmail.com
Sat Apr 27 13:06:54 UTC 2013


i'm trying to start a kdesrc-build built plasma-mobile from 27apr13 git,
built on debian linux using kdesrc-build from a mix of local libs and kde
4.10.2 stable branch. kde runs well, but plasma won't start. I've included
below the 3 scripts used to start "plasma-device" and set the environment
and the .xsessions-error log that results. Please help.

FOLLOWING IS THE FIRST OF 3 SCRIPTS USED TO START MY LOCAL BUILD AND SET UP
THE ENVIRONMENT.

paul at localhost:~$ cat .xsession-mobile.sh

#!/bin/sh
# A script to start the kde workspace.
# Written by Michael Jansen and Michael Pyne
#
# Use by copying this script to ~/.xsession (this will be done for you by
# kdesrc-build and/or kdesrc-build-setup, later).
#
# From there, select "custom" session when logging in, in order to login
using
# this script.
#
# If more user customizations to the environment are needed, create a file
# .xsession-local, which will be sourced just prior to running KDE. This can
# read .bashrc, just set a few vars, etc.

XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}"

. "${XDG_CONFIG_HOME}/kde-env-master.sh" # Should be installed by
kdesrc-build

# See .kde-env-master.sh for details on the kdesrc-build: filter stuff

if ! test -n "$KDESRC_BUILD_TESTING"; then # kdesrc-build: filter
# Read in user-specific customizations
if test -f "$HOME/.xsession-local"; then
    . "$HOME/.xsession-local"
fi

#
### Start the standard kde login script.
#
#"$kde_prefix/bin/startkde"
#"$kde_prefix/bin/plasma-device --nodesktop --fullscreen --opengl --screen
1024x600"
"$kde_prefix/bin/plasma-device"
#/home/paul/kde4/bin/plasma-device

# If you experience problems on logout it is sometimes helpful to make
copies
# of the xsession-errors file on logout.
cp $HOME/.xsession-errors $HOME/.xsession-errors-mobile-`date +"%Y%m%d%H%M"`

# Use user-specific logout if present
if test -f "$HOME/.xsession-logout"; then
    . "$HOME/.xsession-logout"
fi
fi # kdesrc-build: filter

FOLLOWING IS THE SECOND OF 3 SCRIPTS USED TO START MY LOCAL BUILD AND SET
UP THE ENVIRONMENT.

paul at localhost:~$ cat .config/kde-env-master.sh

#!/bin/sh
# # This sets the various environment variables needed to start a KDE
desktop
# built by kdesrc-build, or to run programs/build programs/etc. in the same
# environment.
# # This should not produce any output in order to make it usable by
# non-interactive scripts.
# # See also the sample xsession setup script which requires this file.
# # Use by copying this script to $XDG_CONFIG_HOME/kde-env-master.sh (this
will
# be done for you by kdesrc-build and/or kdesrc-build-setup, later). 99% of
the
# time this means ~/.config/kde-env-master.sh
# # NOTHING IN THIS FILE IS MODIFIABLE, OTHERWISE WARNINGS WILL BE
GENERATED
# === Load user environment settings (i.e. not set through kdesrc-buildrc)
XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}"
# ALL USER MODS GO HERE ↴
if test -f "$XDG_CONFIG_HOME/kde-env-user.sh"; then
     . "$XDG_CONFIG_HOME/kde-env-user.sh"
fi
# === Modifiable variables. Should be set automatically by kdesrc-build
based
# on kdesrc-buildrc settings. Nothing below this line is user-modifiable!
# kdesrc-build: filter | The KDESRC_BUILD_TESTING stuff is to allow the
script to
# kdesrc-build: filter | be executable by testsuite. It is filtered from
destination.
if ! test -n "$KDESRC_BUILD_TESTING"; then # kdesrc-build: filter
# Where KDE libraries and applications are installed to.
kde_prefix="$HOME/kde4"  # E.g. "$HOME/kde-4"
# Where Qt is installed to. If using the system Qt, leave blank or set to
# 'auto' and this script will try to auto-detect.
qt_prefix="/usr"    # E.g. "$HOME/qt4" or "/usr" on many systems.
else # kdesrc-build: filter
kde_prefix="$HOME/kde"     # kdesrc-build: filter
qt_prefix="/usr"      # kdesrc-build: filter
fi # kdesrc-build: filter
# === End of modifiable variables.
# Set defaults if these are unset or null. ':' is a null command
: ${lib_suffix:=""}
: ${user_path:=""}
: ${KDEHOME:="$HOME/.kde4-self"}

# Find system Qt
if test -z "$qt_prefix"; then
    # Find right qmake
    for qmake_candidate in qmake-qt4 qmake4 qmake; do
        if ${qmake_candidate} --version >/dev/null 2>&1; then
            qmake="$qmake_candidate"
            break;
        fi
    done
     qt_prefix=$(${qmake} -query QT_INSTALL_PREFIX 2>/dev/null)
     test -z "$qt_prefix" && qt_prefix="/usr" # Emergency fallback?
     echo "Using Qt found in $qt_prefix"
fi
# Try to auto-determine lib suffix if not set. This requires KDE to already
# have been installed though.
if test -z "$lib_suffix" && test -x "$kde_prefix/bin/kde4-config"; then
    lib_suffix=$("$kde_prefix/bin/kde4-config" --libsuffix 2>/dev/null)
fi

# Add path elements to a colon-separated environment variable,
# taking care not to add extra unneeded colons.
# Should be sh-compatible.
# Can't use function keyword in Busybox-sh
path_add()
{
     eval curVal=\$'{'$1'-}'

     if [ -n "$curVal" ]; then
        eval "$1"="$2:$curVal";
    else
        eval "$1"="$2"
    fi
}

# Initialize some variables based on Qt and KDE install paths.
# Since this should be run as .xsession there's no guarantee of any
# user-specific variables being set already.
libname="lib$lib_suffix"

# Now add the necessary directories, starting with Qt (although we don't
add Qt
# if it's system Qt to avoid moving /usr up in the PATH.
if test "x$qt_prefix" != "x/usr"; then
    path_add "PATH"               "$qt_prefix/bin";
    path_add "LD_LIBRARY_PATH"    "$qt_prefix/$libname";
    path_add "PKG_CONFIG_PATH"    "$qt_prefix/$libname/pkgconfig";
    path_add "MANPATH"            "$qt_prefix/share/man";
fi

# Now add KDE-specific paths.
path_add "PATH"               "$kde_prefix/bin";
path_add "LD_LIBRARY_PATH"    "$kde_prefix/$libname";
path_add "PKG_CONFIG_PATH"    "$kde_prefix/$libname/pkgconfig";
path_add "MANPATH"            "$kde_prefix/share/man";
path_add "CMAKE_PREFIX_PATH"  "$kde_prefix";
path_add "KDEDIRS"            "$kde_prefix";
path_add "QML_IMPORT_PATH"    "$kde_prefix/$libname/kde4/imports";
path_add "STRIGI_PLUGIN_PATH" "$kde_prefix/$libname/strigi";

# For Python bindings support.
path_add "PYTHONPATH"         "$kde_prefix/$libname/site-packages";

# http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
path_add "XDG_DATA_DIRS"      "$kde_prefix/share";
path_add "XDG_CONFIG_DIRS"    "$kde_prefix/etc/xdg";

#
### Some Convenience stuff
#
if test -n "$user_path"; then
    path_add "PATH" "$user_path"
 fi

test -d "$HOME/local/bin" && path_add "PATH"    "$HOME/local/bin"
test -d "$HOME/local/man" && path_add "MANPATH" "$HOME/local/man"

# Finally, export the variables.
export CMAKE_PREFIX_PATH
export KDEDIRS export LD_LIBRARY_PATH
export PATH export PKG_CONFIG_PATH
export PYTHONPATH
export QML_IMPORT_PATH
export STRIGI_PLUGIN_PATH
export XDG_DATA_DIRS
export XDG_CONFIG_DIRS
export MANPATH
export KDEHOME

if ! test -e "$KDEHOME"; then
    mkdir -p "$KDEHOME" >/dev/null 2>&1
fi

FOLLOWING IS THE THIRD OF 3 SCRIPTS USED TO START MY LOCAL BUILD AND SET UP
THE ENVIRONMENT.

paul at localhost:~$ cat .config/kde-env-user.sh

#!/bin/sh
# # This is a sample user customization script. Unlike other example
environment
# setup files, this one can be modified by the user, and kdesrc-build will
not
# warn about it or overwrite it.
# # This file should be installed to $XDG_CONFIG_HOME/kde-env-user.sh
(which
# normally means ~/.config/kde-env-user.sh)
# # As long as it is found here, the kdesrc-build sample session and
environment
# setup scripts will pull in settings from that file first.
### Variables supported by the environment script:
# Directory to use for KDE configuration and other user customizations.
# Syntax uses existing value if set, otherwise sets a different one.
# You can also leave blank, but this risks interfering with system KDE.
KDEHOME="$HOME/.kde4-self"
# "Bitness" suffix to use for library directories. If left blank, will try
to
# auto-detect from installed KDE's compiled defaults, which may still leave
# this blank.
lib_suffix="32"
# Or 32, or 64, as appropriate for your system.
# lib_suffix="32"
# lib_suffix="64"
# Additional paths to add to PATH, can be left blank.
user_path=""  # Set to colon-separated PATH to add to the Qt/KDE paths.
### KDE-specific environment variables:
# KDE supports various environment variables that might be useful for your
# kdesrc-build desktop. See also:
# http://techbase.kde.org/KDE_System_Administration/Environment_Variables
KDE_COLOR_DEBUG=1
export KDE_COLOR_DEBUG   # Be sure to "export" variables you set yourself.
# If more user customizations to the environment are needed, you can add
them
# here.

FOLLOWING IS MY ERROR LOG AS IT IS IN ~/.xsession-errors

paul at localhost:~$ cat .xsession-errors-mobile-201304270752

 Xsession: X session started for paul at Sat Apr 27 07:52:09 EDT 2013
localuser:paul being added to access control list QDBusConnection: session
D-Bus connection created before QCoreApplication. Application may
misbehave. QDBusConnection: session D-Bus connection created before
QCoreApplication. Application may misbehave. Connecting to deprecated
signal
QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
QDBusConnection: session D-Bus connection created before QCoreApplication.
Application may misbehave. QDBusConnection: session D-Bus connection
created before QCoreApplication. Application may misbehave. kbuildsycoca4
running... kbuildsycoca4(10401) KBuildSycoca::checkTimestamps: checking
file timestamps kbuildsycoca4(10401) KBuildSycoca::checkTimestamps:
timestamps check ok kbuildsycoca4(10401) kdemain: Emitting
notifyDatabaseChanged () QDBusConnection: session D-Bus connection created
before QCoreApplication. Application may misbehave. QDBusConnection:
session D-Bus connection created before QCoreApplication. Application may
misbehave. Module  "resources" is registered  Module  "activities" is
registered  Module  "features" is registered  This is the current thread id
for Activities 2973567856 QThread(0x9a300f8)  These are the disabled
plugins: ("activitymanager_plugin_dummy",
"activitymanager_plugin_nepomuk")  Initializing plugin:
"activitymanager_plugin_globalshortcuts"  This is the current thread id for
Activities 3020662544 QThread(0x990cee0)  Object::connect: No such signal
QDBusAbstractInterface::recommendationsChanged() QDBusConnection: session
D-Bus connection created before QCoreApplication. Application may
misbehave. QDBusConnection: session D-Bus connection created before
QCoreApplication. Application may misbehave. link XMLID_34_ hasn't been
detected! link XMLID_34_ hasn't been detected! link XMLID_36_ hasn't been
detected!
file:///home/paul/kde4/share/apps/plasma/packages/org.kde.active.contour-tablet-homescreen/contents/ui/SystrayPanel.qml:138:
Unable to assign [undefined] to int fillMode Initializing plugin:
"activitymanager_plugin_slc"  Initializing plugin:
"activitymanager_plugin_virtualdesktopswitch"  VirtualDesktopSwitch::init
Module  "org.kde.ActivityManager.VirtualDesktopSwitch" is registered
Initializing plugin: "activitymanager_plugin_activityranking"
QSqlDatabase: QSQLITE driver not loaded QSqlDatabase: available drivers:
QSQLITE3 QMYSQL3 QMYSQL Can't open sqlite database QSqlError(-1, "Driver
not loaded", "Driver not loaded")
"/home/paul/.kde4-self/share/apps/activitymanager/activityranking/database"
running in thread ActivityRanking  Initializing plugin:
"activitymanager_plugin_sqlite"  Module
"org.kde.ActivityManager.Resources.Scoring" is registered  QSqlDatabase:
QSQLITE driver not loaded QSqlDatabase: available drivers: QSQLITE3 QMYSQL3
QMYSQL Failed to open the database
"/home/paul/.kde4-self/share/apps/activitymanager/resources/database"
QSqlError(-1, "Driver not loaded", "Driver not loaded")  QSqlQuery::exec:
database not open The database doesn't exist, it is being created
QSqlQuery::exec: database not open QSqlQuery::exec: database not open
QSqlQuery::exec: database not open QSqlQuery::exec: database not open
Upgrading the database version to 1.01  QSqlQuery::exec: database not open
QSqlQuery::exec: database not open QSqlQuery::exec: database not open
QDBusConnection: name 'org.kde.kglobalaccel' had owner '' but we thought it
was ':1.8' QSqlQuery::exec: database not open
plasma-device(10394)/libplasma Plasma::isPluginVersionCompatible:
unversioned plugin detected, may result in instability
plasma-device(10394)/libplasma Plasma::isPluginVersionCompatible:
unversioned plugin detected, may result in instability
plasma-device(10394)/libplasma Plasma::isPluginVersionCompatible:
unversioned plugin detected, may result in instability
plasma-device(10394)/libplasma Plasma::isPluginVersionCompatible:
unversioned plugin detected, may result in instability
plasma-device(10394)/libplasma Plasma::isPluginVersionCompatible:
unversioned plugin detected, may result in instability
plasma-device(10394)/libplasma Plasma::isPluginVersionCompatible:
unversioned plugin detected, may result in instability
VirtualDesktopSwitch::currentActivityChanged  QFileSystemWatcher: failed to
add paths: /home/paul/.kde4-self/share/config/activitymanager-pluginsrc
plasma-device(10394) MetadataModelPrivate::doQuery: Sparql query: ""
plasma-device(10394) DeclarativeAppletScript::qmlCreationFinished: Could
not load org.kde.toolbox package.  plasma-device(10394)/kdecore
(KConfigSkeleton) KCoreConfigSkeleton::writeConfig: plasma-device(10394)
DeclarativeAppletScript::qmlCreationFinished: Could not load
org.kde.toolbox package.  plasma-device(10394)
MetadataModelPrivate::doQuery: Sparql query: ""
file:///home/paul/kde4/share/apps/plasma/plasmoids/org.kde.active.activityscreen/contents/ui/PlasmoidGroup.qml:88:
TypeError: Result of expression 'action' [null] is not an object.
file:///home/paul/kde4/share/apps/plasma/plasmoids/org.kde.active.activityscreen/contents/ui/PlasmoidGroup.qml:71:
TypeError: Result of expression 'action' [null] is not an object.
file:///home/paul/kde4/share/apps/plasma/plasmoids/org.kde.active.activityscreen/contents/ui/PlasmoidGroup.qml:28:
Unable to assign [undefined] to double scale plasma-device(10394)
DeclarativeAppletScript::qmlCreationFinished: Could not load
org.kde.toolbox package.  plasma-device(10394)
MetadataModelPrivate::doQuery: Sparql query: ""
file:///home/paul/kde4/share/apps/plasma/plasmoids/org.kde.active.activityscreen/contents/ui/PlasmoidGroup.qml:88:
TypeError: Result of expression 'action' [null] is not an object.
file:///home/paul/kde4/share/apps/plasma/plasmoids/org.kde.active.activityscreen/contents/ui/PlasmoidGroup.qml:71:
TypeError: Result of expression 'action' [null] is not an object.
file:///home/paul/kde4/share/apps/plasma/plasmoids/org.kde.active.activityscreen/contents/ui/PlasmoidGroup.qml:88:
TypeError: Result of expression 'action' [null] is not an object.
file:///home/paul/kde4/share/apps/plasma/plasmoids/org.kde.active.activityscreen/contents/ui/PlasmoidGroup.qml:71:
TypeError: Result of expression 'action' [null] is not an object.
file:///home/paul/kde4/share/apps/plasma/plasmoids/org.kde.active.activityscreen/contents/ui/PlasmoidGroup.qml:28:
Unable to assign [undefined] to double scale
file:///home/paul/kde4/share/apps/plasma/plasmoids/org.kde.active.activityscreen/contents/ui/PlasmoidGroup.qml:28:
Unable to assign [undefined] to double scale plasma-device(10394)
DeclarativeAppletScript::qmlCreationFinished: Could not load
org.kde.toolbox package.  plasma-device(10394)/libplasma
Plasma::PackagePrivate::isValid: Could not find required directory images
QImage::scaled: Image is a null image
file:///home/paul/kde4/lib/kde4/imports/org/kde/plasma/components/SectionScroller.qml:103:
TypeError: Result of expression 'listView' [null] is not an object.
file:///home/paul/kde4/lib/kde4/imports/org/kde/plasma/components/SectionScroller.qml:175:
ReferenceError: Can't find variable: sectionsRepeater
file:///home/paul/kde4/lib/kde4/imports/org/kde/plasma/components/SectionScroller.qml:103:
Error: Cannot assign [undefined] to QString
file:///home/paul/kde4/lib/kde4/imports/org/kde/plasma/extras/ScrollArea.qml:120:
TypeError: Result of expression 'horizontalScrollBar' [null] is not an
object.
file:///home/paul/kde4/lib/kde4/imports/org/kde/plasma/extras/ScrollArea.qml:120:
TypeError: Result of expression 'horizontalScrollBar' [null] is not an
object.
file:///home/paul/kde4/share/apps/plasma/plasmoids/notifier/contents/ui/devicenotifier.qml:224:13:
QML QDeclarativeListView_QML_87: Possible anchor loop detected on fill.
file:///home/paul/kde4/share/apps/plasma/plasmoids/notifier/contents/ui/devicenotifier.qml:224:13:
QML QDeclarativeListView_QML_87: Possible anchor loop detected on fill.
file:///home/paul/kde4/share/apps/plasma/plasmoids/notifier/contents/ui/devicenotifier.qml:224:13:
QML QDeclarativeListView_QML_87: Possible anchor loop detected on fill.
file:///home/paul/kde4/share/apps/plasma/plasmoids/notifier/contents/ui/devicenotifier.qml:224:13:
QML QDeclarativeListView_QML_87: Possible anchor loop detected on fill.
file:///home/paul/kde4/share/apps/plasma/plasmoids/notifier/contents/ui/devicenotifier.qml:224:13:
QML QDeclarativeListView_QML_87: Possible anchor loop detected on fill.
file:///home/paul/kde4/share/apps/plasma/plasmoids/notifier/contents/ui/devicenotifier.qml:224:13:
QML QDeclarativeListView_QML_87: Possible anchor loop detected on fill.
file:///home/paul/kde4/share/apps/plasma/plasmoids/notifier/contents/ui/devicenotifier.qml:224:13:
QML QDeclarativeListView_QML_87: Possible anchor loop detected on fill. X
Error: BadValue (integer parameter out of range for operation) 2   Major
opcode: 53 (X_CreatePixmap)   Resource id:  0x0 X Error: BadDrawable
(invalid Pixmap or Window parameter) 9   Major opcode: 14 (X_GetGeometry)
Resource id:  0xa000be X Error: BadWindow (invalid Window parameter) 3
Major opcode: 3 (X_GetWindowAttributes)   Resource id:  0xb4f9632e
QPainter::begin: Cannot paint on a null pixmap QPainter::end: Painter not
active, aborted X Error: BadDrawable (invalid Pixmap or Window parameter)
9   Extension:    148 (RENDER)   Minor opcode: 4 (RenderCreatePicture)
Resource id:  0xa000be X Error: BadValue (integer parameter out of range
for operation) 2   Major opcode: 53 (X_CreatePixmap)   Resource id:  0x0 X
Error: BadDrawable (invalid Pixmap or Window parameter) 9   Major opcode:
14 (X_GetGeometry)   Resource id:  0xa000c0 X Error: BadWindow (invalid
Window parameter) 3   Major opcode: 3 (X_GetWindowAttributes)   Resource
id:  0xbfe02138 QPainter::begin: Cannot paint on a null pixmap
QPainter::end: Painter not active, aborted X Error: BadDrawable (invalid
Pixmap or Window parameter) 9   Extension:    148 (RENDER)   Minor opcode:
4 (RenderCreatePicture)   Resource id:  0xa000c0 X Error: BadValue (integer
parameter out of range for operation) 2   Major opcode: 53
(X_CreatePixmap)   Resource id:  0x0 X Error: BadDrawable (invalid Pixmap
or Window parameter) 9   Major opcode: 14 (X_GetGeometry)   Resource id:
0xa000c2 X Error: BadWindow (invalid Window parameter) 3   Major opcode: 3
(X_GetWindowAttributes)   Resource id:  0xbfe02138 QPainter::begin: Cannot
paint on a null pixmap QPainter::end: Painter not active, aborted X Error:
BadDrawable (invalid Pixmap or Window parameter) 9   Extension:    148
(RENDER)   Minor opcode: 4 (RenderCreatePicture)   Resource id:  0xa000c2 X
Error: BadValue (integer parameter out of range for operation) 2   Major
opcode: 53 (X_CreatePixmap)   Resource id:  0x0 X Error: BadDrawable
(invalid Pixmap or Window parameter) 9   Major opcode: 14 (X_GetGeometry)
Resource id:  0xa000c4 X Error: BadWindow (invalid Window parameter) 3
Major opcode: 3 (X_GetWindowAttributes)   Resource id:  0xbfe02138
QPainter::begin: Cannot paint on a null pixmap QPainter::end: Painter not
active, aborted X Error: BadDrawable (invalid Pixmap or Window parameter)
9   Extension:    148 (RENDER)   Minor opcode: 4 (RenderCreatePicture)
Resource id:  0xa000c4 X Error: BadValue (integer parameter out of range
for operation) 2   Major opcode: 53 (X_CreatePixmap)   Resource id:  0x0 X
Error: BadDrawable (invalid Pixmap or Window parameter) 9   Major opcode:
14 (X_GetGeometry)   Resource id:  0xa000c6 X Error: BadWindow (invalid
Window parameter) 3   Major opcode: 3 (X_GetWindowAttributes)   Resource
id:  0xbfe02138 QPainter::begin: Cannot paint on a null pixmap
QPainter::end: Painter not active, aborted X Error: BadDrawable (invalid
Pixmap or Window parameter) 9   Extension:    148 (RENDER)   Minor opcode:
4 (RenderCreatePicture)   Resource id:  0xa000c6 X Error: BadValue (integer
parameter out of range for operation) 2   Major opcode: 53
(X_CreatePixmap)   Resource id:  0x0 X Error: BadDrawable (invalid Pixmap
or Window parameter) 9   Major opcode: 14 (X_GetGeometry)   Resource id:
0xa000c8 X Error: BadWindow (invalid Window parameter) 3   Major opcode: 3
(X_GetWindowAttributes)   Resource id:  0xbfe02138 QPainter::begin: Cannot
paint on a null pixmap QPainter::end: Painter not active, aborted X Error:
BadDrawable (invalid Pixmap or Window parameter) 9   Extension:    148
(RENDER)   Minor opcode: 4 (RenderCreatePicture)   Resource id:  0xa000c8 X
Error: BadValue (integer parameter out of range for operation) 2   Major
opcode: 53 (X_CreatePixmap)   Resource id:  0x0 X Error: BadDrawable
(invalid Pixmap or Window parameter) 9   Major opcode: 14 (X_GetGeometry)
Resource id:  0xa000ca X Error: BadWindow (invalid Window parameter) 3
Major opcode: 3 (X_GetWindowAttributes)   Resource id:  0xbfe02138
QPainter::begin: Cannot paint on a null pixmap QPainter::end: Painter not
active, aborted X Error: BadDrawable (invalid Pixmap or Window parameter)
9   Extension:    148 (RENDER)   Minor opcode: 4 (RenderCreatePicture)
Resource id:  0xa000ca X Error: BadValue (integer parameter out of range
for operation) 2   Major opcode: 53 (X_CreatePixmap)   Resource id:  0x0 X
Error: BadDrawable (invalid Pixmap or Window parameter) 9   Major opcode:
14 (X_GetGeometry)   Resource id:  0xa000cc X Error: BadWindow (invalid
Window parameter) 3   Major opcode: 3 (X_GetWindowAttributes)   Resource
id:  0xbfe02138 QPainter::begin: Cannot paint on a null pixmap
QPainter::end: Painter not active, aborted X Error: BadDrawable (invalid
Pixmap or Window parameter) 9   Extension:    148 (RENDER)   Minor opcode:
4 (RenderCreatePicture)   Resource id:  0xa000cc X Error: BadValue (integer
parameter out of range for operation) 2   Major opcode: 53
(X_CreatePixmap)   Resource id:  0x0 X Error: BadDrawable (invalid Pixmap
or Window parameter) 9   Major opcode: 14 (X_GetGeometry)   Resource id:
0xa000d0 X Error: BadWindow (invalid Window parameter) 3   Major opcode: 3
(X_GetWindowAttributes)   Resource id:  0x0 X Error: BadDrawable (invalid
Pixmap or Window parameter) 9   Extension:    148 (RENDER)   Minor opcode:
4 (RenderCreatePicture)   Resource id:  0xa000d0 X Error: BadValue (integer
parameter out of range for operation) 2   Major opcode: 53
(X_CreatePixmap)   Resource id:  0x0 X Error: BadDrawable (invalid Pixmap
or Window parameter) 9   Major opcode: 14 (X_GetGeometry)   Resource id:
0xa000d2 X Error: BadWindow (invalid Window parameter) 3   Major opcode: 3
(X_GetWindowAttributes)   Resource id:  0x0 X Error: BadDrawable (invalid
Pixmap or Window parameter) 9   Extension:    148 (RENDER)   Minor opcode:
4 (RenderCreatePicture)   Resource id:  0xa000d2 X Error: BadValue (integer
parameter out of range for operation) 2   Major opcode: 53
(X_CreatePixmap)   Resource id:  0x0 X Error: BadDrawable (invalid Pixmap
or Window parameter) 9   Major opcode: 14 (X_GetGeometry)   Resource id:
0xa000d4 X Error: BadWindow (invalid Window parameter) 3   Major opcode: 3
(X_GetWindowAttributes)   Resource id:  0x0 X Error: BadDrawable (invalid
Pixmap or Window parameter) 9   Extension:    148 (RENDER)   Minor opcode:
4 (RenderCreatePicture)   Resource id:  0xa000d4 X Error: BadValue (integer
parameter out of range for operation) 2   Major opcode: 53
(X_CreatePixmap)   Resource id:  0x0 X Error: BadDrawable (invalid Pixmap
or Window parameter) 9   Major opcode: 14 (X_GetGeometry)   Resource id:
0xa000d6 X Error: BadWindow (invalid Window parameter) 3   Major opcode: 3
(X_GetWindowAttributes)   Resource id:  0x0 X Error: BadDrawable (invalid
Pixmap or Window parameter) 9   Extension:    148 (RENDER)   Minor opcode:
4 (RenderCreatePicture)   Resource id:  0xa000d6 X Error: BadValue (integer
parameter out of range for operation) 2   Major opcode: 53
(X_CreatePixmap)   Resource id:  0x0 X Error: BadDrawable (invalid Pixmap
or Window parameter) 9   Major opcode: 14 (X_GetGeometry)   Resource id:
0xa000d8 X Error: BadWindow (invalid Window parameter) 3   Major opcode: 3
(X_GetWindowAttributes)   Resource id:  0x0 X Error: BadDrawable (invalid
Pixmap or Window parameter) 9   Extension:    148 (RENDER)   Minor opcode:
4 (RenderCreatePicture)   Resource id:  0xa000d8 X Error: BadValue (integer
parameter out of range for operation) 2   Major opcode: 53
(X_CreatePixmap)   Resource id:  0x0 X Error: BadDrawable (invalid Pixmap
or Window parameter) 9   Major opcode: 14 (X_GetGeometry)   Resource id:
0xa000da X Error: BadWindow (invalid Window parameter) 3   Major opcode: 3
(X_GetWindowAttributes)   Resource id:  0x0 X Error: BadDrawable (invalid
Pixmap or Window parameter) 9   Extension:    148 (RENDER)   Minor opcode:
4 (RenderCreatePicture)   Resource id:  0xa000da
file:///home/paul/kde4/share/apps/plasma/plasmoids/org.kde.notifications/contents/ui/Jobs.qml:81:5:
QML Title: Binding loop detected for property "height" link XMLID_34_
hasn't been detected! link XMLID_34_ hasn't been detected! link XMLID_36_
hasn't been detected!
file:///home/paul/kde4/share/apps/plasma/plasmoids/org.kde.locationchooser/ui/LocationDelegate.qml:46:5:
QML Text: Possible anchor loop detected on fill.
file:///home/paul/kde4/share/apps/plasma/plasmoids/org.kde.locationchooser/ui/LocationDelegate.qml:85:
ReferenceError: Can't find variable: configIconsSvg Adding a new panel:
Plasma::Containment(0xa6c12f8) Formfactor: 2 Location: 3
file:///home/paul/kde4/share/apps/plasma/plasmoids/org.kde.locationchooser/ui/LocationDelegate.qml:46:5:
QML Text: Possible anchor loop detected on fill.
plasma-device(10394)/libplasma Plasma::PackagePrivate::isValid: Could not
find required directory images  QImage::scaled: Image is a null image
plasma-device(10394)/libplasma Plasma::PackagePrivate::isValid: Could not
find required directory images  QImage::scaled: Image is a null image
trying to alter state of unknown activity!! trying to alter state of
unknown activity!! trying to alter state of unknown activity!!
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.kde.org/pipermail/active/attachments/20130427/cb090b75/attachment-0001.html>


More information about the Active mailing list